4

我有一个动态膨胀的布局。

<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)。

我是一个安卓菜鸟。我不确定我是否以正确的方式提出了这个问题。我想在运行时以某种方式获取点击项的属性,以便我可以操纵它们。谢谢你。

4

1 回答 1

6

在 TexView 布局中添加 android:clickable 以使 TextView Clickable :

android:clickable="true"

在代码部分:

TextView text = new TextView(this);
text.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
text.setText("YOUR TEXT");
text.setId(5111);
text.setClickable(true);
text.setOnClickListener(handler);
View.OnClickListener handler =new View.OnClickListener() {
public void onClick(View v) {
    switch (v.getId()) {
        case R.id.mytextviewone: // doStuff
            break;
        case R.id.mytextviewone: // doStuff
            break;
    }
}

}

于 2012-07-02T04:46:34.443 回答