我一直在努力寻找合适的答案,以了解如何在Android Studio运行时将组件添加到片段中的布局中。
特别是:
我有A类,可以下载并解析XML文件。片段B实例化了此类Class A,并应显示那些下载的项目。 (目前仅是文本视图)
这是应该在其中显示textView的XML文件。这些项目应显示在两列中。我知道如何在XML文件中创建布局,但是我不知道如何以编程方式进行布局。我也读过一些有关充气机的信息,但我不知道它是否适合这个目的。
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TableRow
android:layout_width="match_parent"
android:layout_height="0dp"
android:paddingTop="10dp">
<TextView
android:id="@+id/columnItem"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="5dp"
android:layout_marginStart="5dp"
android:layout_weight=".5"
android:background="#c5c5c5"
android:gravity="center"
android:text="@string/CategoryLeft" />
</TableRow>
</ScrollView>
</TableLayout>
所以这是片段B中的代码,当前它只是更改两个现有文本视图的文本,效果很好。
public void onStart() {
super.onStart();
ArrayList<String> categories = new ArrayList<>();
XMLHandler getXML = new XMLHandler();
getXML.execute();
categories = getXML.getCategories();
Iterator<String> it = categories.iterator();
while (it.hasNext()) {
System.out.println("Data is " + it.next());
columnItem.setText(it.next());
}
}
目标是通过while循环为父布局的每次迭代添加一个新的TextView。此TextView应该显示它的内容。next()。
在此先感谢您是否需要进一步的信息。
答案 0 :(得分:1)
如果要将TextView
添加到TableRow
。
首先,将ID添加到TableRow
<TableRow
android:id="@+id/table1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:paddingTop="10dp">
然后,在您的onCreate中
tableRow = findViewById(R.id.table1); // tableRow is a global variable
在片段中添加空白
private void addTextView(String atext) {
TextView txt = new TextView(getActivity());
txt.setText(atext);
tableRow.addView(txt);
// here you can add other properties to the new TextView (txt)
}
然后
public void onStart() {
super.onStart();
ArrayList<String> categories = new ArrayList<>();
XMLHandler getXML = new XMLHandler();
getXML.execute();
categories = getXML.getCategories();
Iterator<String> it = categories.iterator();
while (it.hasNext()) {
String atxt = it.next();
System.out.println("Data is " + atxt);
addTextView(atxt);
}
}