我遇到了这个奇怪的问题,给我带来了很多麻烦。
我发布了一个应用程序,它是几本书的存储库,我决定使用TextView来显示每章的文本,因为它符合要求,并且使用起来快捷方便。
用户要求他可以选择一个文本并复制它,我使用textIsSelectable = true并且一切都很好,第二天他打电话给我报告文本没有改变,你打开一章然后切换到另一章但文字保持不变。
我认为这可能是我身边的一些逻辑问题,但经过一些调试后问题出现在TextView中,当我设置textIsSelectable = false时;一切都很好。
为了确保我每次显示文本时都使用了增加的静态int,文本保持不变。
那么问题是什么?我用错误的方式使用TextView吗?或者它是TextView本身的一些错误?
这是我的布局(txtBody是导致问题的TextView)
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/scrollView"
android:fillViewport="true"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="right">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Title Text"
android:id="@+id/txtTitle"
android:textSize="24sp"
android:padding="5dp"
android:gravity="right"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Detail Text"
android:id="@+id/txtBody"
android:background="@android:color/white"
android:gravity="right"
android:textColor="@android:color/black"
android:textSize="16sp"
android:padding="5dp"
android:enabled="true"
android:textIsSelectable="true"
android:selectAllOnFocus="false"
android:soundEffectsEnabled="true"/>
</LinearLayout>
</ScrollView>
</FrameLayout>
我使用此代码设置文本:
String body = MainDataManager.getInstance().getChapterBody(book.getTable(), chapter.getId());
updateTextStyle();
txtTitle.setText(chapter.getTitle());
txtBody.setText(body, TextView.BufferType.SPANNABLE);
答案 0 :(得分:0)
在更改textview文本之前使用invalidate()方法。
String body = MainDataManager.getInstance().getChapterBody(book.getTable(), chapter.getId());
updateTextStyle();
txtTitle.invalidate();
txtTitle.setText(chapter.getTitle());
txtBody.invalidate();
txtBody.setText(body, TextView.BufferType.SPANNABLE);