如何在活动中一起显示两个布局?

时间:2014-05-15 08:10:23

标签: android android-layout slidingmenu android-sliding jfeinstein

在Android中拆分页面,我需要将第二页滑到另一页上。

布局1覆盖了左侧页面的80%。 布局2显示20%的其余部分。在右边。

然后我需要在布局1的顶部拖动/滑动布局2并将其滑回。

我试过了this,但我不知道如何根据我的要求配置它?

我真正需要的是下面的截图

的OnLoad

enter image description here

幻灯片后

enter image description here

向后滑动

enter image description here

2 个答案:

答案 0 :(得分:1)

我认为您需要SlidingPaneLayout,例如Google环聊应用。它的工作原理你想要的。这里的文档http://developer.android.com/reference/android/support/v4/widget/SlidingPaneLayout.html

答案 1 :(得分:1)

你可以这样。试试

<FrameLayout
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:background="#D6FFD6"
          xmlns:android="http://schemas.android.com/apk/res/android">
         <ImageView
                     android:src="@drawable/android"
                     android:scaleType="fitCenter"
                     android:layout_height="fill_parent"
                     android:layout_width="fill_parent"/>
         <TextView
                      android:text="learnandroideasily.blogspot.com"
                      android:textSize="30sp"
                      android:textStyle="bold"
                      android:textColor="#003399"
                      android:layout_height="fill_parent"
                      android:layout_width="fill_parent"
                      android:gravity="center"/>
</FrameLayout>

您也可以关注3个教程网站。在哪里轻松解释android的框架布局。比如

号码#1 Frame Layout In Android

号码#2 Android User Interface Design: Frame Layouts

最后编号为#3 Android Frame Layout