2

ユーザーが通知バーの通知をクリックしたときに、カスタム ダイアログを起動したいと考えています。

通知とカスタム ダイアログ クラスは既に作成しています。しかし、ユーザーがクリックしたときに起動する方法がわかりません。

私が検索したすべてのチュートリアルは、ダイアログではなくアクティビティを起動します。だから、誰でもこの点で私を助けることができます.

ありがとうございました。

これは私のカスタムダイアログコードです

public class custom_dialog extends Dialog {
    Context m_context;
    LayoutInflater mInflater = null;

    public custom_dialog (Context context, int theme) {
        super(context,R.style.Theme_Dialog);
        // TODO Auto-generated constructor stub
        this.m_context = context;
        Toast.makeText(getBaseContext(),"onCreate", Toast.LENGTH_SHORT).show();
        mInflater=LayoutInflater.from(m_context);
              }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }
}
4

2 に答える 2

2

まあ、どのクリックも要素をクリックするようなものです。ボタンをクリックすると、カスタム ダイアログが起動します。これが私がそれを行う方法です:

main.xml :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/buttonShowCustomDialog"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Show Custom Dialog" />

</LinearLayout>

custom.xml :

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

    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="5dp" />

    <TextView
        android:id="@+id/text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textColor="#FFF" 
        android:layout_toRightOf="@+id/image"/>/>

     <Button
        android:id="@+id/dialogButtonOK"
        android:layout_width="100px"
        android:layout_height="wrap_content"
        android:text=" Ok "
        android:layout_marginTop="5dp"
        android:layout_marginRight="5dp"
        android:layout_below="@+id/image"
        />

</RelativeLayout>

Javaがそれらをバインドするようになりました:

MainActivity.java :

public class MainActivity extends Activity {

    final Context context = this;
    private Button button;

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        button = (Button) findViewById(R.id.buttonShowCustomDialog);

        // add button listener
        button.setOnClickListener(new OnClickListener() {

          @Override
          public void onClick(View arg0) {

            // custom dialog
            final Dialog dialog = new Dialog(context);
            dialog.setContentView(R.layout.custom);
            dialog.setTitle("Custom Title");

            // set the custom dialog components - text, image and button
            TextView text = (TextView) dialog.findViewById(R.id.text);
            text.setText("Android custom dialog example!");
            ImageView image = (ImageView) dialog.findViewById(R.id.image);
            image.setImageResource(R.drawable.ic_launcher);

            Button dialogButton = (Button) dialog.findViewById(R.id.dialogButtonOK);
            // if button is clicked, close the custom dialog
            dialogButton.setOnClickListener(new OnClickListener() {
                @Override
                public void onClick(View v) {
                    dialog.dismiss();
                }
            });

            dialog.show();
          }
        });
    }
}

おそらくこれを目的に活用できます...

于 2013-06-07T11:08:14.637 に答える