我刚刚开始学习Android应用程序开发,我在尝试不同的活动元素时注意到以下问题。我在主要活动中有以下代码
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableRow
android:id="@+id/row1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TimePicker
android:id="@+id/timePicker1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</TableRow>
</TableLayout>
它只是一个TimePicker的活动。我的问题是,每当我更改移动设备的方向时,TimePicker的小时选择都会变为空白,并且LogCat中会生成以下错误。
Saved cursor position 2/2 out of range for (restored) text
答案 0 :(得分:2)
默认情况下,Android会在您更改屏幕方向或任何配置更改时重新启动您的活动。您必须指定(在您的AndroidManifest.xml中)您不想自己处理配置更改。然后在您的活动中,覆盖onConfigurationChanged()
方法。
可以在此处找到更多信息:http://developer.android.com/guide/topics/resources/runtime-changes.html#HandlingTheChange