3

我有3个项目的清单:

[image_1] [text_1]
[image_2] [text_2]
[image_3] [text_3]

在此处输入图像描述

我没有使用 ListView。相反,我使用了RelativeLayout。

我将如何处理 TextView 和 ImageView 的 OnClickListener?

list_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent" >

<ImageView
    android:id="@+id/image_1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="21dp"
    android:layout_marginTop="21dp"
    android:src="@drawable/calbutton" />

<TextView
    android:id="@+id/text_1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignTop="@+id/image_1"
    android:layout_toRightOf="@+id/image_1"
    android:text="TextView" />

   <ImageView
    android:id="@+id/image_2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBelow="@+id/image_1"
    android:layout_below="@+id/image_1"
    android:layout_marginLeft="21dp"
    android:layout_marginTop="21dp"
    android:src="@drawable/calbutton" />

   <TextView
     android:id="@+id/text_2"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_alignLeft="@+id/text_1"
     android:layout_alignTop="@+id/image_2"
     android:text="TextView" />

   <ImageView
    android:id="@+id/image_3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBelow="@+id/image_2"
    android:layout_below="@+id/image_2"
    android:layout_marginLeft="21dp"
    android:layout_marginTop="21dp"
    android:src="@drawable/calbutton" />  

   <TextView
       android:id="@+id/text_3"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_alignTop="@+id/image_3"
       android:layout_toRightOf="@+id/image_3"
       android:text="TextView" />

</RelativeLayout>
4

8 回答 8

5

您可以为视图添加一个父视图,并将单击侦听器调用到该父视图,就像您可以将 LinearLayout 添加为父视图一样:

<LinearLayout android:id="@+id/firstparent">
<Imageview/>
<TextView/>
</LinearLayout>
<LinearLayout android:id="@+id/secondparent">
<Imageview/>
<TextView/>
</LinearLayout>
<LinearLayout android:id="@+id/thirdparent">
<Imageview/>
<TextView/>
</LinearLayout>
<LinearLayout android:id="@+id/forthparent">
<Imageview/>
<TextView/>
</LinearLayout>

现在将单击侦听器设置为,LinearLayout这样无论您单击图像视图还是文本视图,您都可以获得相同的事件。

然后为每个布局注册 onClickListner。

layout1.setOnClickListener(this);
layout2.setOnClickListener(this);
layout3.setOnClickListener(this);
layout4.setOnClickListener(this);

@Override
public void onClick ( View v )
{
     if ( v == layout1 ) 
     {
            // your code...
     }
     else if(v == layout2){
         // your code...
     }
   ////  add others...
}
于 2013-03-12T04:31:23.797 回答
2

imageviewandtextview放入linear layout. onClickLListener然后覆盖LinearLayout

<RelativeLayout ...... >

    <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content"
        android:orientation="vertical" >

        <ImageView
        android:id="@+id/image_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="21dp"
        android:layout_marginTop="21dp"
        android:src="@drawable/calbutton" />

        <TextView
           android:id="@+id/text_1"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:layout_alignTop="@+id/image_1"
           android:layout_toRightOf="@+id/image_1"
           android:text="TextView" />

    </LinearLyaout>

  .......

</RelativeLayout>
于 2013-03-12T04:33:16.880 回答
2

因为ListView您可以添加一个onItemClickListener将被调用以在行上的任意位置单击。

于 2013-03-12T04:35:49.363 回答
1

只需OnClickListener()像beflow一样实现您的java文件,

public yourClassName extends Activity implements OnClickListener
{

    ....your code

    // register for onClickListener
    text1.setOnClickListener(this); 
    // register same for other textboxes & imageview.

    @Override
    public void onClick ( View view )
    {
         if ( view == text1 ) // assuming text1 is your text_1 of your .xml file
         {
                // do stuff
         }
         ... 
         // same for other textboxes & image view.
    }
}
于 2013-03-12T04:31:26.593 回答
1

只需对所有这样的文本视图和图像视图使用 OnClickListeners

findViewById(R.id.image_1).setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
       ////// write your code here
   }
});
于 2013-03-12T04:32:22.383 回答
0

您可以为 image/button/textview/edittext 等设置如下所示的 onClick 事件,并在 Activity 中使用该方法。

在此处输入图像描述

<Button
    android:id="@+id/some_ui_element"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#00FFFFFF"
    android:onClick="onClickButton"
    android:shadowColor="#000"
    android:text="@string/sometitle"
    android:textColor="@android:color/primary_text_dark_nodisable" />

/**
 * onClickView() called
 * @param v
 */
public void onClickView(View v) {
  //Do something
      switch(v.getId()){
         case R.id.someuielement :
         break;
         ...
         ...
      }
}
于 2013-03-12T04:41:21.667 回答
0

如果您想要一个处理程序对每个视图具有不同的操作,您可以这样做:

TextView tv;
ImageView iv;
View.OnClickListener myOnlyhandler = new View.OnClickListener() {
  public void onClick(View v) {
      if( tv.getId() == ((TextView)v).getId() ){
          // it was the textview
      }
      else if(iv.getId() == ((ImageView)v).getId() ){
          // it was the imageview
      }
  }
}

或者,如果您想将两个 View 组合在一起,请将它们放在一个容器中(例如,RelativeLayout、LinearLayout 等)并为容器分配一个 OnClickListener。

于 2013-03-12T04:33:48.293 回答
0

这是代码

TextView tv[] = new TextView[subCategory.length];
    for (int i = 0; i < subCategory.length; i++) {
            tv[i] = new TextView(this);
            tv[i].setText(subCategory[i]);
            tv[i].setId(i);
            sCategoryLayout.addView(tv[i]);
            tv[i].setOnClickListener(onclicklistener);
        }    

onclicklistener 方法:

OnClickListener onclicklistener = new OnClickListener() {

    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub
        if(v == tv[0]){
            //do whatever you want....
        }
    }
};
于 2013-03-12T04:34:13.553 回答