Ⅰ 求適合安卓系統的手機小說閱讀軟體
當然是豌豆莢和91手機助手,在你電腦上下載安裝豌豆莢或91手機助手,再將你手機連版接電腦,然後運行豌權豆莢或者91手機助手,在應用搜索中找你要的應用直接點擊安裝就可以了。
最好的閱讀軟體當然是開卷有益和ireader
Ⅱ 在開發一個Android電子書閱讀器,目錄已檢出,如何定位章節位置,在線等!求大神!
什麼格式的文件,都應該說說。
如果是文件,那直接跳轉啰
Ⅲ android電子書閱讀器
<activityandroid:name=".EasyNote"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="portrait">
<intent-filter>
<actionandroid:name="android.intent.action.MAIN"/>
<categoryandroid:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<actionandroid:name="android.intent.action.VIEW">
</action>
<categoryandroid:name="android.intent.category.DEFAULT">
</category>
<dataandroid:mimeType="text/plain"></data>
</intent-filter></activity>
注意需要將mimeType修改成你需要的類型,文本文件當然就是:text/plain
還有其它常用的如:
·text/plain(純文本)
·text/html(HTML文檔)
·application/xhtml+xml(XHTML文檔)
·image/gif(GIF圖像)
·image/jpeg(JPEG圖像)【PHP中為:image/pjpeg】
·image/png(PNG圖像)【PHP中為:image/x-png】
·video/mpeg(MPEG動畫)
·application/octet-stream(任意的二進制數據)
·application/pdf(PDF文檔)
Ⅳ 求安卓大神幫忙,開發小說閱讀器,閱讀文件的Java代碼和導入SD卡文件Java代碼
這個google、網路上很多代碼啊,隨便一搜一大堆。
1.「閱讀文件」是指把File讀取成String嗎?用FileInputStream就可以,參考下面(網上找的):
public static String readFileContentStr(String fullFilename)
{
String readOutStr = null;
try {
DataInputStream dis = new DataInputStream(new FileInputStream(fullFilename));
try {
long len = new File(fullFilename).length();
if (len > Integer.MAX_VALUE) throw new IOException("File "+fullFilename+" too large, was "+len+" bytes.");
byte[] bytes = new byte[(int) len];
dis.readFully(bytes);
readOutStr = new String(bytes, "UTF-8");
} finally {
dis.close();
}
Log.d("readFileContentStr", "Successfully to read out string from file "+ fullFilename);
} catch (IOException e) {
readOutStr = null;
Log.d("readFileContentStr", "Fail to read out string from file "+ fullFilename);
}
return readOutStr;
}
2.導入SD卡文件,是指從讀取SD的文件嗎? 是的話 直接new File(path)就可以得到文件了啊,或者FileInputStream就可以得到流。
Ⅳ android中,翻書效果切換view(就是和手機小說閱讀軟體一樣,但是翻頁的是view)
JazzyViewPager 支持Fragment切換動畫的ViewPager,動畫包括轉盤、淡入淡出、翻頁、層疊、旋轉、方塊、專翻轉、放大縮屬小等
項目地址:https://github.com/jfeinstein10/JazzyViewPager
Demo地址:https://github.com/jfeinstein10/JazzyViewPager/blob/master/JazzyViewPager.apk?raw=true
效果類似桌面左右切換的各種效果,不過桌面並非用ViewPager實現而已。
這個是開源的,你可以下下來看看。
Ⅵ 求android電子書閱讀器demo源碼
www.ligotop.com都是源碼,看看上面內有嗎容
Ⅶ 如何做一一個android電子書閱讀器
小說格式只有常見的只有txt什麼
那裡來的apk格式的
apk格式的就是已經封裝好的電子書了。打開就能看,
一般的電子書閱讀器就弄一個txt閱讀器不就可以了
很多論壇上有源碼
Ⅷ 有沒有類似瘋狂小說閱讀器的android版的小說閱讀器啊
無論如何,都是靠自己,只有自己努力了,才行。
Ⅸ 怎麼用android編寫一個電子書閱讀器在線等,急。
android電子書源碼, 下載後導入工程可直接運行點擊下載