0

我需要导航抽屉底部的按钮我还在抽屉布局内添加了线性布局,但是我从该线性布局中获取抽屉布局的类转换异常,我的代码是

            <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"/>

4

0 回答 0