zoukankan      html  css  js  c++  java
  • android 普通对话框的显示

    *普通提示提示对话框:

    MainActivity.java:

    protect void onCreate(Bundle saveInstanceState) {

                   super.onCreate(savedInstance);

                   setContentView(R.layout.activity_main_01);//绑定Activity页面

                   Button btnNormalDialog = (Button)this.findViewById(R.id.btnHello);

                  btnNormalDialog.setOnClickListener(new View.OnClickListener(){

                       @Override

                       public void onClick(View v){

                            AlterDialog.Builder builder = new AlterDialog.Builder(MainActivity.this);

                            builder.setTitle("温馨提示");

                            builder.setMessage("你确定是否退出?");

                            builder.setPositiveButton("确定",new DialogInterface.setOnClickListener(){

                              Toast.MakeText(MainActivity.this,"你确定删去?",Toast.LENGTH).show();

    });

                            builder.setNegativeButton("否定",new DialogInterface.setOnClickListener(){

                                @Override

                                 public void onClick(View v){

    }

    });

                            builder.setNeutralButton("OK",new DialogInterface.setOnClickListener(){

                                @Override

                                public void onClick(View v){

    }

    });

     builder.show();

    }

    });

    }

    activity_main_01.xml:

        <?xml version="1.0" encoding="utf-8"?>

        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

                                       android:layout_match="match_parent"

                                       android:layout_height="match_parent"/>

        <Button 

                   android:layout_width="match_parent"

                   android:layout_height="wrap_content"

                   android:id="@+id/btnHello"

                   android:text="显示框"/>

  • 相关阅读:
    Kafka的安装和设置
    Nginx的安装和设置
    Spark实现K-Means算法
    Spark GraphX实例(2)
    Scala字符串插值
    Scala的Class、Object和Apply()方法
    Spark GraphX实例(1)
    java.lang.ClassNotFoundException: SparkPi$$anonfun$1
    Intellij IDEA连接Spark集群
    Container [pid=6263,containerID=container_1494900155967_0001_02_000001] is running beyond virtual memory limits
  • 原文地址:https://www.cnblogs.com/xiaoxiaomeng/p/5689857.html
Copyright © 2011-2022 走看看