-1

在我的應用程序中,如果窗口標題被刪除,所有edittext在對話框主題的活動中都不可見。 我不明白爲什麼會發生這種情況。如果窗口標題被刪除,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> 

在活動oncreate-

requestWindowFeature(Window.FEATURE_NO_TITLE); 
    setContentView(R.layout.reset_password); 
+0

你的問題並不十分清楚。請用一些更相關的代碼和屏幕截圖來簡要提問。 – GrIsHu

+0

rounded_edittext是哪個bg顏色?提供edittext一些顏色可能bg顏色和文字顏色與爲什麼可能會看到您的文字顏色相同 –

+0

文字顏色是黑色而在rounded_edittext中bg是白色。 –

回答

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); 
+0

它也沒有工作.. –

0

嘗試插入另一滾動型裏面的LinearLayout。

相關問題