閒來自己動手開發了個電子閱讀器,算是功能比較簡單,閱讀txt文件,可以新增書籤,搜尋。包括:1、可以開啟本地資料夾去找到要的書;2、設定背景顏色,字型等等。
這裡簡要的介紹一下其中的核心**:
(1)自動滾屏:
handler autoscrollhandler = new handler()
else
break;
case end_scroll:
autoscrollhandler.removemessages(end_scroll);
autoscrollhandler.removemessages(begin_scroll);
case stop_scroll:
autoscrollhandler.removemessages(begin_scroll);
autoscrollhandler.removemessages(stop_scroll);
break;
}} };
(2)讀書過程中,可以選中進行操作:發簡訊、打**
/**
* 使用者選擇了文字之後,讓使用者選擇要發簡訊還是打**
*/@override
protected dialog oncreatedialog(int id)
}).setnegativebutton("撥打**", new android.content.dialoginte***ce.onclicklistener()
else
tvmain.clearselection();}})
.setnegativebutton("取消選擇", new android.content.dialoginte***ce.onclicklistener()
}).create();
} return null;
}
(3)遍歷資料夾查詢對應的資料夾或者檔案
/**
* 列出當前目錄下的檔案
* @param currdict
*/private void listcurrdictfiles(file currdict)
for(file f:currdict.listfiles() )
if( checkext(item.name.tolowercase()) )
}fileadapter.notifydatasetchanged();
filelistview.postinvalidate();
}
@override
public boolean ontouchevent(motionevent event)
return true;
}else
}
過幾天繼續更新,加強功能!
詳細的**放在這裡了
希望多多交流!
電子護照閱讀機
電子護照閱讀器又稱護照閱讀器 證件識別準確率高 可整合到各種管理應用系統中 電子護照閱讀機 為整合商提供多種開發語言的sdk開發包 提供windows linux及audriod系統開發包 內建二代證讀卡模組,並配有蜂鳴器提示功能 通訊速率最高支援848 kbps,讀卡時間小於3秒 電子護照閱讀器 ...
Android讀取txt的方法
1 放入到資源資料夾裡面,也就是所建立android工程的res下面。我們可以在裡面建立資料夾,放置我們要讀取的檔案。例如 res裡面建立目錄raw,將要讀取的檔案abc.bin放入到該資料夾下,此時通過 openrawresource 方法即可讀取。為 inputstream is getreso...
android 讀取txt檔案內容
android的res資料夾是用來儲存資源的,可以在res資料夾下建立乙個raw資料夾,放置在raw資料夾下的內容會被原樣打包,而不會被編譯成二進位制檔案,並且可以通過r檔案進行很方便地訪問。比如我們可以將更新資訊 版權資訊等放到txt檔案中,然後放到raw檔案中,然後很方便地進行訪問。在raw中放...