我有一个动态膨胀的布局。
<TableLayout>
<!-- Two more tablelayout here -->
<ScrollView>
<TableLayout>
<!-- Here a tablerow is added using inflate layout -->
<TableLayout>
</ScrollView>
</TableLayout>
表格行的布局如下所示。
<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
style="@style/savedItemRow">
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
style="@style/textviewSaved"
android:id="@+id/text_item"/>
<TextView
android:id="@+id/text_item_responce"
style="@style/textviewSavedSub" />
</TableLayout>
</TableRow>
我想在单击 text_item id 时收听(请记住,我已经动态创建了在运行时创建的 tablerows)。
我是一个安卓菜鸟。我不确定我是否以正确的方式提出了这个问题。我想在运行时以某种方式获取点击项的属性,以便我可以操纵它们。谢谢你。