在Android中拆分页面,我需要将第二页滑到另一页上。
布局1覆盖了左侧页面的80%。 布局2显示20%的其余部分。在右边。
然后我需要在布局1的顶部拖动/滑动布局2并将其滑回。
我试过了this,但我不知道如何根据我的要求配置它?
我真正需要的是下面的截图
的OnLoad
幻灯片后
向后滑动
答案 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的框架布局。比如
号码#2 Android User Interface Design: Frame Layouts
最后编号为#3 Android Frame Layout