我设计了我的活动xml
,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="100"
android:orientation="vertical">
<ScrollView
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:background="#C0C0C0"
android:layout_weight="10">
<LinearLayout
android:id="@+id/wall"
android:background="#C0C0C0"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
</ScrollView>
<LinearLayout
android:layout_weight="90"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:weightSum="100"
android:background="@android:drawable/dialog_holo_light_frame">
<EditText
android:id="@+id/content"
android:shadowColor="#000000"
android:layout_weight="20"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<ImageButton
android:id="@+id/post"
android:background="@drawable/post"
android:layout_weight="80"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
</LinearLayout>
现在,在按此图像按钮的此活动中,我每次都会在布局中添加textview。我想加载在启动此活动时创建的所有textView。我是否需要在共享首选项中运行的arraylist上运行循环,以创建所有已创建的文本视图?或者还有其他一些我可以使用的因为我认为通过循环创建启动活动的所有文本视图列表需要时间。