单击通知时启动自定义对话框

时间:2013-06-07 10:44:32

标签: android android-dialog

我想在用户点击通知栏中的通知时启动自定义对话框。

我已经创建了通知和自定义对话框类。但我不知道如何在用户点击它时启动。

我搜索的所有教程都启动了一个Activity,而不是一个对话框。所以,任何人都可以帮助我这方面。

谢谢。

这是我的自定义对话代码

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);
    }
}

2 个答案:

答案 0 :(得分:2)

您可以尝试使用此代码

Context context = getApplicationContext();
CharSequence contentTitle = "Title";
CharSequence contentText = "content";
Intent notifyIntent = new Intent(android.content.Intent.ACTION_VIEW,Uri.parse("http://www.android.com"));

PendingIntent intent = 
                PendingIntent.getActivity(SimpleNotification.this, 0, 
                notifyIntent, android.content.Intent.FLAG_ACTIVITY_NEW_TASK);

notifyDetails.setLatestEventInfo(context, contentTitle, contentText, intent);
mNotificationManager.notify(SIMPLE_NOTFICATION_ID, notifyDetails);

让pendingintent打开你的一个活动,让你的活动完全透明,然后打开一个对话框。

答案 1 :(得分: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();
          }
        });
    }
}

你可以利用这个来达到你的目的......

相关问题