Android SlidingPaneLayout左窗格宽度

时间:2016-02-14 18:33:37

标签: android android-layout chat slidingpanelayout

我一直在开发一个Android应用程序,我必须实现聊天,为此我正在使用Master-Detail流程进行实际聊天,就像任何聊天应用程序一样,我一直在使用AndroidSlidingPaneLayout。

我遇到的问题是它看起来像谷歌环聊应用,右窗格略微暴露,我不想要,我希望左窗格覆盖整个屏幕宽度。我尝试了很多不同的东西,但到目前为止没有任何帮助。

<android.support.v4.widget.SlidingPaneLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content_viewspl"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="@dimen/conversations_overview_width"
    android:layout_height="match_parent"
    android:background="@color/grey"
    android:orientation="vertical" >

    <ListView
        android:id="@+id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"
        android:divider="@color/black12"
        android:dividerHeight="1dp" />
</LinearLayout>

<LinearLayout
    android:id="@+id/selected"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:orientation="vertical" >
</LinearLayout>

我不希望右图中标记为红色的宿醉,左侧窗格应覆盖全宽

enter image description here

0 个答案:

没有答案