-5

この画像のようなカスタムアラートダイアログを作成します。 これを行うにはどうすればよいですか? 私はあなたがまた、カスタムタイトルをしたい場合は、新しいレイアウトxmlファイルとあなたのタイトルのための新しいレイアウトを作成するために必要なすべてのこのダイアログAlert DialogAndroidでカスタムダイアログを作成する方法

+1

あなたがこれまでに何をしましたか?あなたのコードはどこですか? –

+0

私はこのダイアログをデザインしたいと思います。どのようにデザインするのか分かりません。 –

答えて

0

ファーストをデザインしたいです。カスタムレイアウトからタイトルにアクセスする場合も、この方法でアクセスすることができ

final AlertDialog dialog; 

    final View alertDialogView = LayoutInflater.from(getContext()).inflate 
      (R.layout.your_layout, null); 
    final View titleView = LayoutInflater.from(getContext()).inflate(R.layout.dialog_layout, null); 

dialog = new AlertDialog.Builder(getContext()) 
      .setView(alertDialogView) 
      .setCustomTitle(titleView) 
      .setPositiveButton(R.string.set, new DialogInterface.OnClickListener() { 
       @Override 
       public void onClick(DialogInterface dialog, int which) { 
        ///do your job 
      }) 
      .setCancelable(true) 
      .create(); 


    dialog.show(); 

((TextView) titleView.findViewById(R.id.title)).setText(getString(R.string. 
your_string)); 
+0

私は実装に問題はありません –

関連する問題