嗨,我是android的初学者,在我的应用中,我必须在右侧显示SlidingPaneLayout,但使用下面的代码,它来自左侧。
请帮我。
我怎样才能使它在右侧?
其次,我的要求是我的SlidingPaneLayout必须在操作栏上重叠,但要使用下面的xml代码SlidingPaneLayout,如下面的图像
请建议我如何解决这两个问题
工具栏布局:-
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/ColorPrimary"
android:elevation="4dp"
>
</android.support.v7.widget.Toolbar>
activity_sliding:-
<android.support.v4.widget.SlidingPaneLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/SlidingPanel"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="right">
<ListView
android:id="@+id/MenuList"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="right"
android:background="#101010"
android:orientation="vertical" >
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/android_robot" />
</LinearLayout>
</android.support.v4.widget.SlidingPaneLayout>
main_layout:-
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include
android:id="@+id/tool_bar"
layout="@layout/toolbar_layout">
</include>
<include
android:id="@+id/SlidingPanel"
layout="@layout/activity_sliding">
</include>
</LinearLayout>
最佳答案
在 list 中,将以下属性添加到开始的<application>
标记中。
android:supportsRtl="true"
然后将此属性添加到布局中的开始
SlidingPaneLayout
标记中。android:layoutDirection="rtl"
最后,将
tool_bar
<include>
元素移到LinearLayout
内的主要内容SlidingPaneLayout
中,并调整ImageView
的高度和重量。<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#101010"
android:orientation="vertical">
<include
android:id="@+id/tool_bar"
layout="@layout/toolbar_layout">
</include>
<ImageView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@drawable/android_robot" />
</LinearLayout>
请注意,
View
的子SlidingPaneLayout
将继承rtl
layoutDirection
。如果子View
的布局行为受到方向的影响,则可能会导致问题。例如,水平方向的LinearLayout
将从右开始布置其子级。通过在受影响的android:layoutDirection="ltr"
上设置View
,可以很容易地解决此问题。还要注意,此示例对布局中的方向进行了硬编码。如果需要在应用程序范围内同时支持LTR和RTL布局,则需要以编程方式进行此操作,并考虑设备的默认方向。
关于android - 如何在右侧显示SlidingPaneLayout?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36660629/