我在我的应用程序中使用了 SlidingPaneLayout。
在横向中,我希望 SlidingPaneLayout 的左右窗格完全适合,并且不需要滑动即可查看它们。
我的布局是:
<android.support.v4.widget.SlidingPaneLayout
android:id="@+id/sliding_pane_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/header" >
<ListView
android:id="@+id/left_drawer"
android:layout_width="220dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/tab_normal_bg"
android:choiceMode="singleChoice"
android:divider="@drawable/tab_divider"
android:dividerHeight="1dp" />
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="1000dp"
android:layout_height="match_parent"
android:layout_weight="1" />
</android.support.v4.widget.SlidingPaneLayout>
任何帮助将非常感激。
谢谢!