设计像书本打开和动画一样的布局与书评时间相同

时间:2011-08-26 14:25:25

标签: android

我想将我的页面显示为一本书,当我们从一个页面移动到另一个页面时,它应该看起来像书评。有关示例,请参阅以下屏幕截图

enter image description here

你能就这个设计和动画功能给我一些建议吗?

1 个答案:

答案 0 :(得分:2)

你在找这个吗?

enter image description here

此布局的代码

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:scrollbars="horizontal|vertical">
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent" android:layout_height="fill_parent" android:gravity="center_vertical" >
        <Button android:id="@+id/btnNext" android:layout_width="wrap_content"
            android:layout_centerVertical="true" android:layout_height="wrap_content"
            android:background="@drawable/icon" android:layout_alignParentRight="true" />
        <Button android:id="@+id/btnBack" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:background="@drawable/icon"
            android:layout_centerVertical="true" android:layout_alignParentLeft="true" />
        <LinearLayout android:layout_width="fill_parent" android:layout_centerVertical="true"
            android:gravity="center_horizontal" android:layout_height="fill_parent"
            android:layout_toLeftOf="@id/btnNext" android:layout_toRightOf="@id/btnBack"
            android:orientation="horizontal">
            <RelativeLayout android:id="@+id/layRight"
                android:layout_width="150dp" android:layout_height="250dp"></RelativeLayout>
            <RelativeLayout android:id="@+id/layLeft"
                android:layout_width="150dp" android:layout_height="250dp"></RelativeLayout>
        </LinearLayout>
    </RelativeLayout>
</ScrollView>