如何使support.v4.widget.SlidingPaneLayout窗格向左滑动

时间:2014-04-08 07:04:33

标签: android menu slide

我正在使用support.v4.widget.SlidingPaneLayout,我的应用支持两种语言,英语和阿拉伯语。支持的Android版本是4.2。

对于英语我使用SlidingPaneLayout的默认行为即。菜单位于左侧,内容框架从左到右打开。当用户选择阿拉伯语时。我希望一切都是从右到左(RTL)。

请告诉我SlidingPaneLayout的任何微调,以便在一次拍摄中我可以使其成为RTL即。右侧菜单和内容框架从右到左打开。

提前致谢。

http://developer.android.com/reference/android/support/v4/widget/SlidingPaneLayout.html

1 个答案:

答案 0 :(得分:0)

添加android:layoutDirection="ltr"android:layoutDirection="locale" in SlidingPaneLayout>

样本:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SlidingPaneLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/sliding_panel"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".MainActivity"
    tools:showIn="@layout/app_bar_main">

    <fragment
        android:id="@+id/panel_left"
        android:name="onePanelFragment"
        android:layout_width="180dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
/>

    <fragment
        android:id="@+id/panel_right"
        android:name="twoPanelFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="end"
        android:layout_weight="1" />

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