1
我是新來的android.I有表格佈局的XML和動態添加行,我試圖把動態行放入scrollview.please任何人都可以幫助如何做。如何將動態滾動視圖添加到動態表格行
這裏我的xml:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
<include layout="@layout/header"
android:id="@+id/header" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/tv_message"
android:textSize="18sp"
android:textAlignment="center"
android:background="#deb8"
android:layout_below="@id/header"
android:textColor="#000000"
android:text="Please Confirm the Quote and check for Errors "/>
<ScrollView
android:id="@+id/ScrollView03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_message" >
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_message"
android:id="@+id/table_orderfulfillment"
android:stretchColumns="*">
</TableLayout>
</ScrollView>
</Relative Layout>
您可以使用RecyclerView作爲網格來顯示信息並自定義項目佈局,而不是使用TableLayout。在這裏看到很好的例子:http://blog.sqisland.com/2014/12/recyclerview-grid-with-header.html – Alexandre
這裏也是一個很好的例子:http://stackoverflow.com/questions/40587168/simple-android-網格示例-使用-recyclerview與 - gridlayoutmanager樣的 – Alexandre