我想製作一個簡單的android應用程序。我可以使用Android版本2.3.3。我用下面的代碼在我的XML文件中顯示的EditText框:EditText框未顯示
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/ll1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/username"
android:textColor="#000000" />
<EditText
android:id="@+id/username"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="text"
android:text="" >
<requestFocus />
</EditText>
</LinearLayout>
<LinearLayout
android:id="@+id/ll2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/password"
android:textColor="#000000" />
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<CheckBox
android:id="@+id/remember_me"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/remember_me"
android:textColor="#000000" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll4"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/signInButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/signIn" >
</Button>
</LinearLayout>
<LinearLayout
android:id="@+id/ll5"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/forgot_password"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/forgot_password"
android:textColor="#000000" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll6"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/createAccountButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/create_account" >
</Button>
</LinearLayout>
但是沒有被顯示的EditText。所有其他按鈕,文字瀏覽和一切正常顯示,只有EditText沒有顯示。任何人都可以告訴我什麼問題是?
-Thanks提前
只需重新啓動Eclipse一次。可能是一個Eclipse錯誤。 – Ghost 2012-02-06 07:06:53
請提供您的xml文件的完整代碼。 – Relsell 2012-02-06 07:09:12
請你可以發佈整個XML代碼?我認爲一旦清理該項目,那麼它將工作正常。 – naresh 2012-02-06 07:10:18