首页

Android应用源码小说阅读器(可以语音播报)

java

2020-6-29

这是一款小说阅读器项目源码。主要功能有显示小说列表,查看小说,可以语音读小说,可以调节字体、亮度、在语音读书的时候可以自己跳转,方便阅读。UI设计很漂亮,值得借鉴。项目代码不是特别多,而且主文件都有很详细的注释,很便于大家的学习(源码采用GBK编码)。








package com.hck.book.ui;

import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.io.UnsupportedEncodingException;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.text.DecimalFormat;
import java.util.Vector;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Paint.Align;
import android.util.Log;

public class BookPageFactory {
	StringBuilder  word;
	private static final String TAG = "BookPageFactory";
	private File book_file = null;
	private int m_backColor = 0xffff9e85; // 背景颜色
	private Bitmap m_book_bg = null;
	private int m_fontSize = 20;
	private boolean m_isfirstPage, m_islastPage;
	private Vector<String> m_lines = new Vector<String>();
	private MappedByteBuffer m_mbBuf = null;// 内存中的图书字符
	private int m_mbBufBegin = 0;// 当前页起始位置
	private int m_mbBufEnd = 0;// 当前页终点位置

	private int m_mbBufLen = 0; // 图书总长度

	private String m_strCharsetName = "GBK";

	private int m_textColor = Color.rgb(28, 28, 28);

	private int marginHeight = 15; // 上下与边缘的距离
	private int marginWidth = 15; // 左右与边缘的距离
	private int mHeight;
	private int mLineCount; // 每页可以显示的行数
	private Paint mPaint;

	private float mVisibleHeight; // 绘制内容的宽
	private float mVisibleWidth; // 绘制内容的宽
	private int mWidth;

	public BookPageFactory(int w, int h) {
		mWidth = w;
		mHeight = h;
		mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);// 画笔
		mPaint.setTextAlign(Align.LEFT);// 做对其
		mPaint.setTextSize(m_fontSize);// 字体大小
		mPaint.setColor(m_textColor);// 字体颜色
		mVisibleWidth = mWidth - marginWidth * 2;
		mVisibleHeight = mHeight - marginHeight * 2;
		mLineCount = (int) (mVisibleHeight / m_fontSize) - 1; // 可显示的行数,-1是因为底部显示进度的位置容易被遮住
	}

	public int getM_fontSize() {
		return m_fontSize;
	}

	public int getmLineCount() {
		return mLineCount;
	}

	public boolean isfirstPage() {
		return m_isfirstPage;
	}

	public boolean islastPage() {
		return m_islastPage;
	}

	/**
	 * 向后翻页
	 * 
	 * @throws IOException
	 */
	public void nextPage() throws IOException {
		if (m_mbBufEnd >= m_mbBufLen) {
			m_islastPage = true;
			return;
		} else
			m_islastPage = false;
		m_lines.clear();
		m_mbBufBegin = m_mbBufEnd;// 下一页页起始位置=当前页结束位置
		m_lines = pageDown();
		
	}

	public void currentPage() throws IOException {
		m_lines.clear();
		m_lines = pageDown();
	}

	public void onDraw(Canvas c) {
		word=new StringBuilder();
		mPaint.setTextSize(m_fontSize);
		mPaint.setColor(m_textColor);
		if (m_lines.size() == 0)
			m_lines = pageDown();
		if (m_lines.size() > 0) {
			if (m_book_bg == null)
				c.drawColor(m_backColor);
			else
				c.drawBitmap(m_book_bg, 0, 0, null);
			int y = marginHeight;
			for (String strLine : m_lines) {
				y  = m_fontSize;
				c.drawText(strLine, marginWidth, y, mPaint);
				word.append(strLine);
			}
			Read.words=word.toString();
			word=null;
		}
		float fPercent = (float) (m_mbBufBegin * 1.0 / m_mbBufLen);
		DecimalFormat df = new DecimalFormat("#0.0");
		String strPercent = df.format(fPercent * 100)   "%";
		int nPercentWidth = (int) mPaint.measureText("999.9%")   1;
		c.drawText(strPercent, mWidth - nPercentWidth, mHeight - 5, mPaint);
	}

	/**
	 * 
	 * @param strFilePath
	 * @param begin
	 *            表示书签记录的位置,读取书签时,将begin值给m_mbBufEnd,在读取nextpage,及成功读取到了书签
	 *            记录时将m_mbBufBegin开始位置作为书签记录
	 * 
	 * @throws IOException
	 */
	@SuppressWarnings("resource")
	public void openbook(String strFilePath, int begin) throws IOException {
		book_file = new File(strFilePath);
		long lLen = book_file.length();
		m_mbBufLen = (int) lLen;
		m_mbBuf = new RandomAccessFile(book_file, "r").getChannel().map(
				FileChannel.MapMode.READ_ONLY, 0, lLen);
		Log.d(TAG, "total lenth:"   m_mbBufLen);
		// 设置已读进度
		if (begin >= 0) {
			m_mbBufBegin = begin;
			m_mbBufEnd = begin;
		} else {
		}
	}

	/**
	 * 画指定页的下一页
	 * 
	 * @return 下一页的内容 Vector<String>
	 */
	protected Vector<String> pageDown() {
		mPaint.setTextSize(m_fontSize);
		mPaint.setColor(m_textColor);
		String strParagraph = "";
		Vector<String> lines = new Vector<String>();
		while (lines.size() < mLineCount && m_mbBufEnd < m_mbBufLen) {
			byte[] paraBuf = readParagraphForward(m_mbBufEnd);
			m_mbBufEnd  = paraBuf.length;// 每次读取后,记录结束点位置,该位置是段落结束位置
			try {
				strParagraph = new String(paraBuf, m_strCharsetName);// 转换成制定GBK编码
			} catch (UnsupportedEncodingException e) {
				Log.e(TAG, "pageDown->转换编码失败", e);
			}
			String strReturn = "";
			// 替换掉回车换行符
			if (strParagraph.indexOf("\r\n") != -1) {
				strReturn = "\r\n";
				strParagraph = strParagraph.replaceAll("\r\n", "");
			} else if (strParagraph.indexOf("\n") != -1) {
				strReturn = "\n";
				strParagraph = strParagraph.replaceAll("\n", "");
			}

			if (strParagraph.length() == 0) {
				lines.add(strParagraph);
			}
			while (strParagraph.length() > 0) {
				// 画一行文字
				int nSize = mPaint.breakText(strParagraph, true, mVisibleWidth,
						null);
				lines.add(strParagraph.substring(0, nSize));
				strParagraph = strParagraph.substring(nSize);// 得到剩余的文字
				// 超出最大行数则不再画
				if (lines.size() >= mLineCount) {
					break;
				}
			}
			// 如果该页最后一段只显示了一部分,则从新定位结束点位置
			if (strParagraph.length() != 0) {
				try {
					m_mbBufEnd -= (strParagraph   strReturn)
							.getBytes(m_strCharsetName).length;
				} catch (UnsupportedEncodingException e) {
					Log.e(TAG, "pageDown->记录结束点位置失败", e);
				}
			}
		}
		return lines;
	}

	/**
	 * 得到上上页的结束位置
	 */
	protected void pageUp() {
		if (m_mbBufBegin < 0)
			m_mbBufBegin = 0;
		Vector<String> lines = new Vector<String>();
		String strParagraph = "";
		while (lines.size() < mLineCount && m_mbBufBegin > 0) {
			Vector<String> paraLines = new Vector<String>();
			byte[] paraBuf = readParagraphBack(m_mbBufBegin);
			m_mbBufBegin -= paraBuf.length;// 每次读取一段后,记录开始点位置,是段首开始的位置
			try {
				strParagraph = new String(paraBuf, m_strCharsetName);
			} catch (UnsupportedEncodingException e) {
				Log.e(TAG, "pageUp->转换编码失败", e);
			}
			strParagraph = strParagraph.replaceAll("\r\n", "");
			strParagraph = strParagraph.replaceAll("\n", "");
			// 如果是空白行,直接添加
			if (strParagraph.length() == 0) {
				paraLines.add(strParagraph);
			}
			while (strParagraph.length() > 0) {
				// 画一行文字
				int nSize = mPaint.breakText(strParagraph, true, mVisibleWidth,
						null);
				paraLines.add(strParagraph.substring(0, nSize));
				strParagraph = strParagraph.substring(nSize);
			}
			lines.addAll(0, paraLines);
		}

		while (lines.size() > mLineCount) {
			try {
				m_mbBufBegin  = lines.get(0).getBytes(m_strCharsetName).length;
				lines.remove(0);
			} catch (UnsupportedEncodingException e) {
				Log.e(TAG, "pageUp->记录起始点位置失败", e);
			}
		}
		m_mbBufEnd = m_mbBufBegin;// 上上一页的结束点等于上一页的起始点
		return;
	}

	/**
	 * 向前翻页
	 * 
	 * @throws IOException
	 */
	protected void prePage() throws IOException {
		if (m_mbBufBegin <= 0) {
			m_mbBufBegin = 0;
			m_isfirstPage = true;
			return;
		} else
			m_isfirstPage = false;
		m_lines.clear();
		pageUp();
		m_lines = pageDown();
	}

	/**
	 * 读取指定位置的上一个段落
	 * 
	 * @param nFromPos
	 * @return byte[]
	 */
	protected byte[] readParagraphBack(int nFromPos) {
		int nEnd = nFromPos;
		int i;
		byte b0, b1;
		if (m_strCharsetName.equals("UTF-16LE")) {
			i = nEnd - 2;
			while (i > 0) {
				b0 = m_mbBuf.get(i);
				b1 = m_mbBuf.get(i   1);
				if (b0 == 0x0a && b1 == 0x00 && i != nEnd - 2) {
					i  = 2;
					break;
				}
				i--;
			}

		} else if (m_strCharsetName.equals("UTF-16BE")) {
			i = nEnd - 2;
			while (i > 0) {
				b0 = m_mbBuf.get(i);
				b1 = m_mbBuf.get(i   1);
				if (b0 == 0x00 && b1 == 0x0a && i != nEnd - 2) {
					i  = 2;
					break;
				}
				i--;
			}
		} else {
			i = nEnd - 1;
			while (i > 0) {
				b0 = m_mbBuf.get(i);
				if (b0 == 0x0a && i != nEnd - 1) {// 0x0a表示换行符
					i  ;
					break;
				}
				i--;
			}
		}
		if (i < 0)
			i = 0;
		int nParaSize = nEnd - i;
		int j;
		byte[] buf = new byte[nParaSize];
		for (j = 0; j < nParaSize; j  ) {
			buf[j] = m_mbBuf.get(i   j);
		}
		return buf;
	}

	/**
	 * 读取指定位置的下一个段落
	 * 
	 * @param nFromPos
	 * @return byte[]
	 */
	protected byte[] readParagraphForward(int nFromPos) {
		int nStart = nFromPos;
		int i = nStart;
		byte b0, b1;
		// 根据编码格式判断换行
		if (m_strCharsetName.equals("UTF-16LE")) {
			while (i < m_mbBufLen - 1) {
				b0 = m_mbBuf.get(i  );
				b1 = m_mbBuf.get(i  );
				if (b0 == 0x0a && b1 == 0x00) {
					break;
				}
			}
		} else if (m_strCharsetName.equals("UTF-16BE")) {
			while (i < m_mbBufLen - 1) {
				b0 = m_mbBuf.get(i  );
				b1 = m_mbBuf.get(i  );
				if (b0 == 0x00 && b1 == 0x0a) {
					break;
				}
			}
		} else {
			while (i < m_mbBufLen) {
				b0 = m_mbBuf.get(i  );
				if (b0 == 0x0a) {
					break;
				}
			}
		}
		int nParaSize = i - nStart;
		byte[] buf = new byte[nParaSize];
		for (i = 0; i < nParaSize; i  ) {
			buf[i] = m_mbBuf.get(nFromPos   i);
		}
		return buf;
	}

	public void setBgBitmap(Bitmap BG) {
		m_book_bg = BG;
	}

	public void setM_fontSize(int m_fontSize) {
		this.m_fontSize = m_fontSize;
		mLineCount = (int) (mVisibleHeight / m_fontSize) - 1;
	}

	// 设置页面起始点
	public void setM_mbBufBegin(int m_mbBufBegin) {
		this.m_mbBufBegin = m_mbBufBegin;
	}

	// 设置页面结束点
	public void setM_mbBufEnd(int m_mbBufEnd) {
		this.m_mbBufEnd = m_mbBufEnd;
	}

	public int getM_mbBufBegin() {
		return m_mbBufBegin;
	}

	public String getFirstLineText() {
		return m_lines.size() > 0 ? m_lines.get(0) : "";
	}

	public int getM_textColor() {
		return m_textColor;
	}

	public void setM_textColor(int m_textColor) {
		this.m_textColor = m_textColor;
	}

	public int getM_mbBufLen() {
		return m_mbBufLen;
	}

	public int getM_mbBufEnd() {
		return m_mbBufEnd;
	}

}

资源下载此资源下载价格为4D币(VIP免费),请先
资源文件列表
.gradle/4.1/fileChanges/last-build.bin , 1
.gradle/4.1/fileContent/fileContent.lock , 17
.gradle/4.1/fileHashes/fileHashes.bin , 68915
.gradle/4.1/fileHashes/fileHashes.lock , 17
.gradle/4.1/fileHashes/resourceHashesCache.bin , 18701
.gradle/4.1/javaCompile/classAnalysis.bin , 125304
.gradle/4.1/javaCompile/jarAnalysis.bin , 63264
.gradle/4.1/javaCompile/javaCompile.lock , 17
.gradle/4.1/javaCompile/taskHistory.bin , 37600
.gradle/4.1/javaCompile/taskJars.bin , 18788
.gradle/4.1/taskHistory/fileSnapshots.bin , 179252
.gradle/4.1/taskHistory/taskHistory.bin , 61653
.gradle/4.1/taskHistory/taskHistory.lock , 17
.gradle/buildOutputCleanup/built.bin , 0
.gradle/buildOutputCleanup/cache.properties , 51
.gradle/buildOutputCleanup/cache.properties.lock , 2
.idea/encodings.xml , 313
.idea/gradle.xml , 626
.idea/libraries/__local_aars___D__Projects_BullSoftProjects_smarthome_hckBook_app_libs_Msc_jar_unspecified_jar.xml , 300
.idea/libraries/__local_aars___D__Projects_BullSoftProjects_smarthome_hckBook_app_libs_com_hck_book_jar_unspecified_jar.xml , 318
.idea/libraries/__local_aars___D__Projects_BullSoftProjects_smarthome_hckBook_app_libs_pinyin4j_2_5_0_jar_unspecified_jar.xml , 322
.idea/misc.xml , 1611
.idea/modules.xml , 351
.idea/runConfigurations.xml , 564
.idea/workspace.xml , 156906
app/app.iml , 9289
app/build/generated/mockable-android-19.v3.jar , 2115476
app/build/generated/source/buildConfig/androidTest/debug/com/hck/test/test/BuildConfig.java , 439
app/build/generated/source/buildConfig/debug/com/hck/test/BuildConfig.java , 433
app/build/generated/source/r/androidTest/debug/com/hck/test/test/R.java , 232
app/build/generated/source/r/debug/com/hck/test/R.java , 15834
app/build/intermediates/blame/res/debug/multi-v2/debug.json , 6052
app/build/intermediates/blame/res/debug/multi-v2/values.json , 6073
app/build/intermediates/blame/res/debug/single/debug.json , 36360
app/build/intermediates/classes/debug/com/hck/book/adapter/FileDapter$GetView.class , 609
app/build/intermediates/classes/debug/com/hck/book/adapter/FileDapter.class , 3367
app/build/intermediates/classes/debug/com/hck/book/adapter/MarkAdapter$1.class , 2427
app/build/intermediates/classes/debug/com/hck/book/adapter/MarkAdapter.class , 3958
app/build/intermediates/classes/debug/com/hck/book/helper/BookDB.class , 1726
app/build/intermediates/classes/debug/com/hck/book/helper/MarkHelper.class , 1769
app/build/intermediates/classes/debug/com/hck/book/mydialog/MarkDialog.class , 3496
app/build/intermediates/classes/debug/com/hck/book/ui/BaseActivity.class , 202
app/build/intermediates/classes/debug/com/hck/book/ui/BookListActivity2$1.class , 1633
app/build/intermediates/classes/debug/com/hck/book/ui/BookListActivity2$2.class , 3613
app/build/intermediates/classes/debug/com/hck/book/ui/BookListActivity2$ShlefAdapter.class , 2065
app/build/intermediates/classes/debug/com/hck/book/ui/BookListActivity2.class , 12191
app/build/intermediates/classes/debug/com/hck/book/ui/BookPageFactory.class , 9678
app/build/intermediates/classes/debug/com/hck/book/ui/BookShelfActivity$1.class , 1098
app/build/intermediates/classes/debug/com/hck/book/ui/BookShelfActivity$2.class , 1089
app/build/intermediates/classes/debug/com/hck/book/ui/BookShelfActivity$3.class , 1091
app/build/intermediates/classes/debug/com/hck/book/ui/BookShelfActivity$4.class , 906
app/build/intermediates/classes/debug/com/hck/book/ui/BookShelfActivity$5.class , 907
app/build/intermediates/classes/debug/com/hck/book/ui/BookShelfActivity$GridAdapter.class , 2389
app/build/intermediates/classes/debug/com/hck/book/ui/BookShelfActivity$ShlefAdapter.class , 1976
app/build/intermediates/classes/debug/com/hck/book/ui/BookShelfActivity.class , 4839
app/build/intermediates/classes/debug/com/hck/book/ui/HelpActivity.class , 1890
app/build/intermediates/classes/debug/com/hck/book/ui/InActivity$1.class , 1234
app/build/intermediates/classes/debug/com/hck/book/ui/InActivity$2.class , 1409
app/build/intermediates/classes/debug/com/hck/book/ui/InActivity$3.class , 1119
app/build/intermediates/classes/debug/com/hck/book/ui/InActivity$4.class , 3514
app/build/intermediates/classes/debug/com/hck/book/ui/InActivity$5.class , 3677
app/build/intermediates/classes/debug/com/hck/book/ui/InActivity.class , 16693
app/build/intermediates/classes/debug/com/hck/book/ui/LodingActivity$1.class , 1213
app/build/intermediates/classes/debug/com/hck/book/ui/LodingActivity$2.class , 1021
app/build/intermediates/classes/debug/com/hck/book/ui/LodingActivity$AsyncSetApprove.class , 5535
app/build/intermediates/classes/debug/com/hck/book/ui/LodingActivity.class , 6129
app/build/intermediates/classes/debug/com/hck/book/ui/MyApplication.class , 911
app/build/intermediates/classes/debug/com/hck/book/ui/PageWidget.class , 13519
app/build/intermediates/classes/debug/com/hck/book/ui/Read$1.class , 1103
app/build/intermediates/classes/debug/com/hck/book/ui/Read$2.class , 3625
app/build/intermediates/classes/debug/com/hck/book/ui/Read.class , 21333
app/build/intermediates/classes/debug/com/hck/book/util/AlertDialogs$1.class , 1370
app/build/intermediates/classes/debug/com/hck/book/util/AlertDialogs$2.class , 1518
app/build/intermediates/classes/debug/com/hck/book/util/AlertDialogs.class , 3408
app/build/intermediates/classes/debug/com/hck/book/util/Exit.class , 1353
app/build/intermediates/classes/debug/com/hck/book/util/InstallManager.class , 2242
app/build/intermediates/classes/debug/com/hck/book/util/IsNetWork.class , 1515
app/build/intermediates/classes/debug/com/hck/book/util/MangerActivitys.class , 703
app/build/intermediates/classes/debug/com/hck/book/util/MyGridView.class , 1671
app/build/intermediates/classes/debug/com/hck/book/util/MyTool.class , 995
app/build/intermediates/classes/debug/com/hck/book/util/PinyinListComparator.class , 1347
app/build/intermediates/classes/debug/com/hck/book/util/PinyinUtil.class , 2338
app/build/intermediates/classes/debug/com/hck/book/util/Reserver.class , 1198
app/build/intermediates/classes/debug/com/hck/book/util/SpeekUtil$1.class , 879
app/build/intermediates/classes/debug/com/hck/book/util/SpeekUtil.class , 2248
app/build/intermediates/classes/debug/com/hck/book/util/UpdateManager$1.class , 1445
app/build/intermediates/classes/debug/com/hck/book/util/UpdateManager$2.class , 951
app/build/intermediates/classes/debug/com/hck/book/util/UpdateManager$downloadApkThread.class , 3665
app/build/intermediates/classes/debug/com/hck/book/util/UpdateManager.class , 5686
app/build/intermediates/classes/debug/com/hck/book/vo/BookVo.class , 794
app/build/intermediates/classes/debug/com/hck/book/vo/MarkVo.class , 1661
app/build/intermediates/classes/debug/com/hck/date/FinalDate.class , 621
app/build/intermediates/classes/debug/com/hck/test/BuildConfig.class , 695
app/build/intermediates/classes/debug/com/hck/test/R$anim.class , 372
app/build/intermediates/classes/debug/com/hck/test/R$array.class , 510
app/build/intermediates/classes/debug/com/hck/test/R$color.class , 371
app/build/intermediates/classes/debug/com/hck/test/R$drawable.class , 3802
app/build/intermediates/classes/debug/com/hck/test/R$id.class , 4149
app/build/intermediates/classes/debug/com/hck/test/R$layout.class , 1523
app/build/intermediates/classes/debug/com/hck/test/R$menu.class , 363
app/build/intermediates/classes/debug/com/hck/test/R$raw.class , 397
app/build/intermediates/classes/debug/com/hck/test/R$string.class , 2099
app/build/intermediates/classes/debug/com/hck/test/R$style.class , 419
app/build/intermediates/classes/debug/com/hck/test/R.class , 693
app/build/intermediates/incremental/compileDebugAidl/dependency.store , 5
app/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store , 5
app/build/intermediates/incremental/debug-mergeJavaRes/merge-state , 4022
app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CFCKtnUZ6SCjB3d3J6nVbuWQZSo= , 103591
app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/PwY6HhPlPETK6_nDNJAmf2FbGK8= , 440701
app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XBiNXaS6Eeek1KnBxLcsmbayXOI= , 182132
app/build/intermediates/incremental/debug-mergeJniLibs/merge-state , 1039
app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/CFCKtnUZ6SCjB3d3J6nVbuWQZSo= , 103591
app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/PwY6HhPlPETK6_nDNJAmf2FbGK8= , 440701
app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XBiNXaS6Eeek1KnBxLcsmbayXOI= , 182132
app/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties , 31
app/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml , 1137
app/build/intermediates/incremental/mergeDebugAssets/merger.xml , 406
app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml , 687
app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties , 30116
app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml , 4748
app/build/intermediates/incremental/mergeDebugResources/merger.xml , 26599
app/build/intermediates/incremental/mergeDebugShaders/merger.xml , 304
app/build/intermediates/incremental/packageDebug/debug/dex-renamer-state.txt , 194
app/build/intermediates/incremental/packageDebug/debug/file-input-save-data.txt , 857
app/build/intermediates/incremental/packageDebug/debug/zip-cache/FWH6qMQjFpfbD7hEcIvEm7J6n4M= , 394702
app/build/intermediates/incremental/packageDebug/debug/zip-cache/kHGg2FjC8E1jygabb7Jm5GVBFf0= , 1453038
app/build/intermediates/javaPrecompile/debug/annotationProcessors.json , 2
app/build/intermediates/jniLibs/debug/armeabi/libmsc.so , 612808
app/build/intermediates/jniLibs/debug/armeabi-v7a/libmsc.so , 593080
app/build/intermediates/jniLibs/debug/x86/libmsc.so , 667084
app/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml , 653
app/build/intermediates/manifest/androidTest/debug/output.json , 144
app/build/intermediates/manifests/density/debug/output.json , 2
app/build/intermediates/manifests/full/debug/AndroidManifest.xml , 5559
app/build/intermediates/manifests/full/debug/output.json , 200
app/build/intermediates/manifests/instant-run/debug/output.json , 212
app/build/intermediates/res/androidTest/debug/output.json , 152
app/build/intermediates/res/androidTest/debug/resources-debugAndroidTest.ap_ , 1175
app/build/intermediates/res/debug/output.json , 197
app/build/intermediates/res/debug/resources-debug.ap_ , 1453038
app/build/intermediates/res/merged/debug/anim_loding.xml.flat , 540
app/build/intermediates/res/merged/debug/drawable-hdpi_back.png.flat , 980
app/build/intermediates/res/merged/debug/drawable-hdpi_bg.png.flat , 540044
app/build/intermediates/res/merged/debug/drawable-hdpi_bg3.png.flat , 4710
app/build/intermediates/res/merged/debug/drawable-hdpi_book0.png.flat , 5061
app/build/intermediates/res/merged/debug/drawable-hdpi_bookshelf_layer_center.png.flat , 72279
app/build/intermediates/res/merged/debug/drawable-hdpi_btn_local.png.flat , 958
app/build/intermediates/res/merged/debug/drawable-hdpi_camera_bottom_on.png.flat , 1305
app/build/intermediates/res/merged/debug/drawable-hdpi_cartoon_folder.png.flat , 2468
app/build/intermediates/res/merged/debug/drawable-hdpi_cover.png.flat , 5061
app/build/intermediates/res/merged/debug/drawable-hdpi_cover_txt.png.flat , 2290
最多只能显示150条信息!
没有账号? 忘记密码?

社交账号快速登录