Android界面Rotation

1、这里讨论的主要是当手机界面Rotation(按ctrl+F12,手机模拟器翻转)时,如何处理数据恢复

2、这里还讨论了,如何处理手机里面的联系人

实例:

3、布局文件:

main.xml 定义两个按钮

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <Button android:id="@+id/pick" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:layout_weight="1"
        android:text="Pick" android:enabled="true" />
    <Button android:id="@+id/view" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:layout_weight="1"
        android:text="View" android:enabled="false" />
</LinearLayout>

4、Java代码

相关推荐