Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为游客开发一个 Android 应用程序,我在其中显示了我所在城市的所有住宿房间的列表。我有大约 500 行文本,每个房间大约 5 行(地址、电话号码、联系人、电子邮件地址和星级)。我想将所有文本放在一个活动中,以便您可以滚动和阅读该文本。
我应该使用TextView还是其他?我应该将整个文本保存在 res/strings.xml 中吗?
TextView
使用没有问题,TextViews只是不要忘记使用ScrollView你的布局,这样你就可以滚动你的 TextViews。
TextViews
ScrollView
您可以使用 WebView 并以 HTML 格式显示文本。
我是为大文档做的,并使用 assets 文件夹来存储和加载文档。
可以使用以下技术保持国际化:
在 Android 应用中部署本地化文档的最佳做法是什么?