は、私は、タイトルなしで、白い背景ダイアログボックスを無題で作成する方法は?
この私のlayoute
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/Image"
android:id="@+id/fondBoxWin" />
I got the figure 1 And I want to get Figure 2
と、この私のコードのJavaせずにダイアログを作成したい
@Override
public Dialog onCreateDialog(int identifiant) {
Dialog box = null;
//En fonction de l'identifiant de la boîte qu'on veut créer
switch(identifiant) {
case MY_BOX :
box = new Dialog(this);
box.setContentView(R.layout.mybox);
break;
}
return box;
}
ありがとうございますaziz – amirouche