我遇到了Android表单的异常问题。表单显示并正常工作,但屏幕更新似乎没有发生。因此,当您取消选中复选框时,它似乎会被勾选,因为屏幕不会清除。
代码是:
public class SettingsActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.settings);
}
}
和XML布局(有点长,我害怕,因为我不确定什么是相关的):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@id/fullscreen_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?android:attr/actionBarSize"
android:orientation="vertical" >
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/saveOriginalImage"
android:textAppearance="?android:attr/textAppearanceMedium" />
<CheckBox
android:id="@+id/saveOriginalImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/saveDirectory"
android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText
android:id="@+id/saveDirectory"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textUri" >
<requestFocus />
</EditText>
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/sendOriginalImage"
android:textAppearance="?android:attr/textAppearanceMedium" />
<CheckBox
android:id="@+id/sendOriginalImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</TableRow>
</TableLayout>
<TableLayout
style="@style/ButtonBar"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TableRow
android:id="@+id/tableRow5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
tools:ignore="UselessParent" >
<Button
android:id="@+id/cancel"
style="@style/ButtonBarButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/Cancel" />
<Button
android:id="@+id/ok"
style="@style/ButtonBarButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/OK" />
</TableRow>
</TableLayout>
</LinearLayout>
我确信这是明显的,但我一直在摸不着头脑。
答案 0 :(得分:0)
试试这个
修改AndroidManifest.xml
<activity
android:name=".SettingsActivity"
android:configChanges="orientation|keyboardHidden|screenSize" >
</activity>
如果不行,请告诉我。 我给出另一个解决方案