有谁知道如何在navigationDrawer中替换listview? 我不知道导航抽屉怎么做我没有必要做listView。 我想放置imagenButtons,我会使用setonclickListener来获取片段。 我想看起来像
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- The main content view -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:id="@+id/tab_route_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
<ImageButton
android:id="@+id/imageButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
<ImageButton
android:id="@+id/imageButton3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
<ImageButton
android:id="@+id/imageButton4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
</LinearLayout>
我想使用imageButton.setOnClickListener 但我不知道。 Samebody有什么想法吗?
答案 0 :(得分:1)
FrameLayout contentFragme = findViewById(R.id.content_frame);
content_frame.findViewById(R.id.imageButton1).setOnClickListener(this);
然后根据其ID更改onClick()
中的片段。
你走了。