如果有EditText,GridView OnclickListener不起作用

时间:2013-11-13 02:22:25

标签: java android android-layout gridview android-edittext

我正在使用gridview,每个方块中的视图是相对布局。如果relativelayout中有edittext或按钮,onitemclicklistener将无法工作。

适配器不是问题,因为我在没有任何编辑文本或按钮的情况下测试了onclicklistener并且它有效。

如何使用编辑文本和按钮?

Itemlayout

    <ImageView
        android:id="@+id/ivcustom1"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:src="@drawable/selectexcercise" />

    <TextView
        android:id="@+id/tvcustomsets1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/ivcustom1"
        android:textColor="#3498db"
        android:text="Sets:" />

    <TextView
        android:id="@+id/tvcustomreps1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/tvcustomsets1"
        android:textColor="#3498db"
        android:text="Reps:" />

    <EditText
        android:id="@+id/etcustom2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/tvcustomreps1"
        android:layout_alignBottom="@+id/tvcustomreps1"
        android:layout_alignRight="@+id/ivcustom1"
        android:background="@android:color/transparent"
        android:hint="Enter Reps"
        android:textColor="#3498db"
        android:inputType="number"
        android:maxLength="6"
        android:textSize="12sp" >
    </EditText>

    <EditText
        android:id="@+id/etcustom1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/tvcustomsets1"
        android:layout_alignBottom="@+id/tvcustomsets1"
        android:layout_alignLeft="@+id/etcustom2"
        android:background="@android:color/transparent"
        android:hint="Enter Sets"
        android:textColor="#3498db"
        android:inputType="number"
        android:maxLength="6"
        android:textSize="12sp" />

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_alignBottom="@+id/ivcustom1"
        android:layout_alignRight="@+id/etcustom1"
        android:background="#3498db" />

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="23dp"
        android:layout_alignLeft="@+id/tvcustomreps1"
        android:layout_alignRight="@+id/etcustom1"
        android:layout_below="@+id/tvcustomreps1"
        android:background="@drawable/stretchesclicked"
        android:text="Note"
        android:textColor="#FFFFFF"
        android:textSize="14sp" />

</RelativeLayout>

以防万一是onitemclicklistener

gridview.setOnItemClickListener(new OnItemClickListener() {
        public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
            System.out.println("The position is" + position);
        }
    });

和适配器

 public class CustomWorkoutAdapter extends BaseAdapter {
    private Context mContext;

    public CustomWorkoutAdapter(Context c) {
        mContext = c;
    }

    public int getCount() {
        return rList.size();
    }

    public Object getItem(int position) {
        return null;
    }

    public long getItemId(int position) {
        return 0;
    }

    // create a new ImageView for each item referenced by the Adapter
    public View getView(final int position, View convertView,
            ViewGroup parent) {

        RelativeLayout RL = rList.get(position);

        return RL;
    }

}

2 个答案:

答案 0 :(得分:0)

在您的项目布局中,添加以下内容:

 android:descendantFocusability="blocksDescendants"

试一试。

答案 1 :(得分:0)

ListViews不是为此而制作的。如果您希望项目可编辑,则可以处理ListView.OnItemClickListener()事件并使用对话框弹出窗口允许它们进行编辑。