A. android textview 長文本 界面卡頓怎麼解決
對單個item,將內容截斷在內存碼陪塵卜里暫存一個索引表,textview直接使用內存表裡讀遲兄蠢取內容;
對大量item,可以分頁刷新。(8-10個貌似不多啊,是不是有其它地方卡頓了。。)
B. android編程如何顯示大量文本
如果是產品製作方向——
由於手機屏幕的限制,和屏幕大小的問題
顯示大量文字,在產品方面,我們一般放棄使用縮小字體類似的方法
一般的做法都是讓文本可以上下滑動來進行閱讀
如果按照上下滑動思路就很簡單了
使用ScrollView,內部嵌套一個TextView就可以了
可以來個簡單範例
============================
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="要顯示的大段文字" />
</LinearLayout>
</ScrollView>
==========================
如果是說編程界面——
如果開發使用ADT可以
在首選項中選擇常規——編輯器——文本編輯器,這里可以任意修改文字大小、顏色等