0

我是 android 编程新手,我在访问导航视图中的视图组件时遇到了问题。这是我的代码:

`

 <android.support.design.widget.NavigationView  android:id="@+id/nav_view"
    android:layout_width="100dp" android:layout_height="match_parent"
    android:layout_gravity="start" android:fitsSystemWindows="true">

    <RelativeLayout
        android:id="@+id/lay"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="60dp"
        android:background="#e4e4e4">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/imageView3"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:src="@drawable/icon" />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/imageView4"
            android:src="@drawable/icon2"
            android:layout_below="@+id/imageView3"
            android:layout_centerHorizontal="true" />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/imageView5"
            android:src="@drawable/icon3"
            android:layout_below="@+id/imageView4"
            android:layout_centerHorizontal="true" />
    </RelativeLayout>
</android.support.design.widget.NavigationView>`

我只想访问导航视图中的图像视图。我在谷歌搜索,我没有解决方案。帮我解决它。

ImageView item1 = (ImageView)findViewById(R.id.imageView3);
        item1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Toast.makeText(getApplicationContext(), "just try", Toast.LENGTH_LONG).show();
            }
        });
4

0 回答 0