4

我有一个膨胀的线性布局,其中包含 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
可能它很简单,但我没有办法解决它。所以我需要帮助。
谢谢

4

3 回答 3

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 将是您想要的最终字符串。

于 2013-03-22T06:14:59.820 回答
2

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

于 2013-03-22T06:10:56.367 回答
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
       }      }); 
}
于 2013-03-22T06:22:10.760 回答