Gridview onclick每个视图

时间:2018-02-22 13:46:10

标签: gridview onclick

我将第四页与gridview分开,我想点击每个视图,如按钮,每个视图都进行另一项活动。但我不知道如何设置我的java。像按钮一样吗?但它不接受:任何人都可以帮我设置java。感谢

 <GridLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:columnCount="2"
    android:rowCount="2">

    <View
        android:layout_width="0dp"
        android:id="@+id/a"
        android:layout_height="0dp"
        android:layout_columnWeight="1"
        android:layout_rowWeight="1"
        android:background="@drawable/rectangle"/>

    <View
        android:layout_width="0dp"
        android:id="@+id/b"
        android:layout_height="0dp"
        android:layout_columnWeight="1"
        android:layout_rowWeight="1"
        android:background="@drawable/rectangle"/>

和java给出了错误:

public class ferr extends AppCompatActivity {
Button a, b, c, d;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.ferr);
    a = (Button) findViewById(R.id.a);
}

}

0 个答案:

没有答案