停止SlidingPaneLayout走得太远了

时间:2014-02-05 06:11:07

标签: android android-layout layout android-sliding

我有一个SlidingPaneLayout,它在左侧窗格中包含一个片段。

<android.support.v4.widget.SlidingPaneLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity$DummySectionFragment"
    >

    <fragment
        android:name="com.bolldorf.cnpmoebel.widgets.PlaceChooserFragment"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/fragment_place_chooser"
        tools:layout="@layout/fragment_place_chooser"
        android:layout_weight="0.3" />

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1">
    < ... more stuff here ... >
        </RelativeLayout>


</android.support.v4.widget.SlidingPaneLayout>

片段不是很宽,但它的宽度可以稍微变化,因为它由动态加载的微调器组成。

如果SlidingPaneLayout显示完整的片段,怎么能让它停止打开?

澄清:在面板滑出之前,我可以看到整个右侧(或xml中的底部)窗格,并且隐藏了左侧窗格。

滑动后,我可以看到右侧窗格的10%左右,左侧窗格的90%。

我想要的是看到左侧窗格的30%和右侧窗格的60%,即我希望幻灯片移动能够更快停止。

1 个答案:

答案 0 :(得分:0)

这可以通过设置&#34; android:layout_marginLeft&#34;来解决。在xml中的fragment标签中,希望它对您有所帮助。