单击膨胀的线性布局内的TextView

时间:2013-03-22 06:09:01

标签: android layout-inflater

我有一个膨胀的线性布局,其中包含2个TextView。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:orientation="vertical" >

<TextView
    android:id="@+id/tv_m"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/ll_borders"
    android:tag="m"
    android:text="m" />

<TextView
    android:id="@+id/tv_q"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/ll_borders"
    android:tag="q"
    android:text="q" />
</LinearLayout>  

我想要的是当这个线性布局膨胀时,我想得到我点击的唯一TEXTVIEW。例如,如果我点击“tv_m”,那么它只会返回tv_m的文本 可能它很简单,但我没有办法解决它。所以我需要帮助。
感谢

3 个答案:

答案 0 :(得分:5)

在对布局进行充气后,获取textview对象,如下所示

LinearLayout layout = inflater.inflate(<your layout name>, null);
TextView textView1 = layout.findViewById(R.id.tv_m));
TextView textView2 = layout.findViewById(R.id.tv_q));
String selectedText;
textView1.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
             selectedText = textView1.getText().toString();
    }
});

同样,您也可以为textView2设置监听器。 selectedText将是您想要的最终字符串。

答案 1 :(得分:2)

您需要为文本视图设置单击侦听器。然后,当单击一个时,它将在您的代码中调用一个函数,将其传递给被触摸的视图。然后你可以在上面调用getText。

答案 2 :(得分:2)

这里的代码只是检查一下:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    LinearLayout lt = (LinearLayout) findViewById( R.id.linearLayout );
    LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
    View view = inflater.inflate(your xml to be inflate, null, false);
    lt.addView(view);

    TextView tv_m = (TextView)view.findViewById( R.id.tv_m);
    TextView tv_l = (TextView)view.findViewById( R.id.tv_l);

   tv_m.setOnClickListener(new View.OnClickListener() {  
   @Override         
    public void onClick(View v) {     

       tv_m.getText(); // to get the value written on text view
       }      }); 
}