我需要导航抽屉底部的按钮我已经在抽屉布局中添加了linearlayout但是从该线性布局获得抽屉布局的类投射异常,我的代码是
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_gravity="right"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</FrameLayout>
<LinearLayout
android:id="@+id/right_drawer"
android:layout_height="wrap_content"
android:layout_width="240dp"
android:orientation="vertical" >
<Button
android:id="@+id/btn_Apply"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ListView
android:id="@+id/right_drawer_list"
android:layout_width="400dp"
android:layout_height="match_parent"
android:layout_gravity="end"
android:choiceMode="singleChoice"
android:divider="@android:colortransparent"
android:dividerHeight="0dp"
android:background="#111"/>