我是本科生,几乎没有 Java 知识基础。我一直在帮助我的朋友设计一个应用程序来通过无线显示他的结果。以前,他有一个大约 100 行的参数和 id 编号列表,我使用 1 行 1 行键入
<TableRow
android:id="@+id/tableRow1"
android:layout_height="wrap_content"
android:layout_width="match_parent">
<TextView
android:text="ABG_0"
android:id="@+id/textView111"
android:textStyle="bold"></TextView>
<TextView
android:id="@+id/TextView211"
android:text="2049"
android:textStyle="bold"
android:typeface="serif"></TextView>
<TextView
android:id="@+id/TextView311"
android:text="333"
android:textStyle="bold"
android:typeface="serif"></TextView>
</TableRow>
最近,他将他的参数列表更新为大约 350 行,那么有没有办法将这些参数和 ids(保存在一个 excel 文件中)放入 eclipse 的 android 活动中,以便将参数存储在本地和应用程序内部.(显示在活动 xml 上)
我一直在寻找将excel结果放入android eclipse表中的方法,但几乎没有找到任何可行的方法。如果你这样做,请给任何建议。谢谢你。