如果我有TextView
,例如:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView"
android:textColor="#999999"
android:layout_marginTop="10dp"
android:text="@text/text.txt"/>
如何将文本设置为该.txt文件中的文本。 还是有替代方案吗?
答案 0 :(得分:0)
我认为无法直接将.txt
文件分配到textview
中的XML
。但您可以通过.txt
动态阅读java
文件。要阅读.txt
文件,请将.txt
文件放入/assets
目录,&amp;这样访问......
AssetManager assetMananger = context.getAssets();
InputStream inputStream = assetMananger.open("file.txt");
System.out.println(inputStream);
希望这会对你有所帮助。