こんにちは、ListView とさらにいくつかのビューを使用してナビゲーション ドロワーを作成しようとしています。
私の問題は、他のビューをクリックしようとすると、クリックが登録されないことです
ナビゲーション ドロワーとして複雑なビュー構造を作成できるかどうか教えてください。
<?xml version="1.0" encoding="utf-8"?>
<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" />
<!-- The navigation drawer -->
<LinearLayout
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/charcoal"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:orientation="vertical"
android:showDividers="middle" >
<ListView
android:id="@+id/home_drawer_lv_accounts"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:choiceMode="singleChoice"
android:divider="@color/amazon"
android:dividerHeight="5dp" >
</ListView>
<CheckedTextView
android:id="@+id/home_drawer_cv_banks"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/health"
android:focusable="true"
android:gravity="center"
android:text="@string/text_all_banks"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FFF" />
</LinearLayout>
</android.support.v4.widget.DrawerLayout>