我有多个长字符串TextView
。当我启动Activity
它时,它会在显示实际屏幕之前挂起一段时间。
我想知道是否有任何标准方法可以做到这一点,或者我错过了什么?
我在我的应用程序中执行以下操作:
- 字符串是从
strings.xml
文件中加载的。 - 一个段落包含 114 个单词 704 个字符,并且在 8 个不同的段落中有 8 个这样的段落
TextViews
- 我的应用离线工作
- 我使用
JustifiedTextView
如下
<com.uncopt.android.widget.text.justify.JustifiedTextView android:id="@+id/heading" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:fontFamily="sans-serif" android:text="long_string_like_paragraph" android:textColor="@color/subscreenfontcolor" android:textSize="20sp" />