2010-10-09 17 views
6

J'ai fait un fichier xml comme ceci:Android dialogue personnalisée affiche android barre de titre

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
       android:orientation="vertical" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:gravity="bottom" 
       android:layout_gravity="bottom" 
       android:background="#04600F" 
       android:padding="10dp"> 

       <TextView android:id="@+id/txtMessage" 
         android:layout_width="fill_parent" 
         android:gravity="center" 
         android:layout_height="wrap_content"/> 

       <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
           android:orientation="horizontal" 
           android:layout_width="fill_parent" 
           android:layout_height="wrap_content"> 

          <Button android:id="@+id/btnOne" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:textSize="20dip" 
            android:textColor="#ffffff" 
            android:layout_alignParentLeft="true" 
            android:background="@drawable/black_menu_button" 
            android:layout_marginLeft="5dip" 
            android:layout_centerVertical="true" 
            android:layout_centerHorizontal="true"/> 

          <Button android:id="@+id/btnTwo" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:textSize="20dip" 
            android:textColor="#ffffff" 
            android:layout_alignParentRight="true" 
            android:background="@drawable/blue_menu_button" 
            android:layout_marginRight="5dip" 
            android:layout_centerVertical="true" 
            android:layout_centerHorizontal="true"/> 
       </RelativeLayout> 
</LinearLayout> 

Et j'essaie d'y accéder comme ceci:

final Dialog dialog = new Dialog(ctx,android.R.style.Theme_Translucent_NoTitleBar_Fullscreen); 
    dialog.setContentView(R.layout.myxml); 
..... 

Il regarde l'écran exactement ce que je Je le veux, sur le fond de celui-ci. Ma demande a ce qui suit mis sur AndroidManifest:

android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 

Le seul inconvénient de ce que je faisais est le fait que l'Android barre de titre (celui avec batterie signal/...) devient visible aussi longtemps que mon dialogue est visible. Comment puis-je le désactiver?

modifier plus tard

Merci de remarquer que, pour moi, la solution est assez simple effet

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 
+3

Est-ce solution d'aide? http://stackoverflow.com/questions/2644134/android-how-to-create-a-dialog-without-a-title –

Répondre

17

La solution est très simple, essayez le code ci-dessous:

final Dialog dialog = new Dialog(ctx,android.R.style.Theme_Translucent_NoTitleBar_Fullscreen); 
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 
dialog.setContentView(R.layout.myxml);