在我的应用程序中,如果删除了窗口标题,则所有edittext在对话框主题的活动中都不可见。 我不知道为什么会这样。
XML FILE-
<?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:layout_gravity="center"
android:gravity="center" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/layout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:orientation="horizontal" >
<ImageView
android:layout_width="60dp"
android:layout_height="50dp"
android:src="@drawable/small_icon" />
<EditText
android:id="@+id/edittext"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_gravity="center_horizontal"
android:layout_margin="10dp"
android:background="@drawable/rounded_edittext"
android:gravity="center"
android:numeric="integer"
android:password="true" />
</LinearLayout>
</ScrollView>
在活动中创建 -
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.reset_password);
答案 0 :(得分:0)
试试这段代码......
/* REMOVE TITLE OF APPLICATION */
requestWindowFeature(Window.FEATURE_NO_TITLE);
/* SET ACTIVITY TO FULL SCREEN MODE */
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
答案 1 :(得分:0)
尝试在另一个LinearLayout中插入ScrollView。