dialog,是对话框的意思,对话框分很多种,有单选,多选,时间,日期等等这些都是dialog。
先来看看一般dialog长啥样。
里面有几个属性,先附上代码:
Mainactivity:
package com.example.dialog1;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;
public class MainActivity extends Activity {
private Button bt;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initViews();
}
private void initViews() {
// TODO Auto-generated method stub
bt = (Button) findViewById(R.id.bt);
bt.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
AlertDialog.Builder builder = new Builder(MainActivity.this);
builder.setTitle("提示:");
builder.setIcon(R.drawable.ic_launcher);
builder.setMessage("Hello!");
builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
Toast.makeText(MainActivity.this, "已确定", 1000).show();
;
}
});
builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
Toast.makeText(MainActivity.this, "已取消", 1000).show();
;
}
});
builder.show();
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
里面可以看到AlertDialog,那么我们先了解什么是AlertDialog?什么是AlertDialog.Builder?且两者有什么区别?
AlertDialog是Dialog的一个直接子类,AlertDialog也是Android系统当中最常用的对话框之一。
一个AlertDialog可以有两个以上的Button,可以对一个AlertDialog设置相应的信息。比如title,massage,
setSingleChoiceItems,setPositiveButton,setNegativeButton等等。。。。
但不能直接通过AlertDialog的构造函数来生产一个AlertDialog。研究AlertDialog的源码发现AlertDialog所有的构造方法都是写
保护的所以不能通过:AlertDialog alertDialog = new AlertDialog();来得到。
只能通过:
AlertDialog.Builder alertDialog =new AlertDialog.Builder(this);
注意:
由于button有一个监听事件,有onclicklistener方法,而setPositiveButton或者是setNegativeButton也有一个同名方法,但是
两个方法不是一个类,所以在第二个onclicklistener方法前加入DialogInterface这个类名来为了避免混肴,不然会报错,系统无
法识别。
里面有几个属性:
setIcon //设置左上角的提示图标
setTitle //设置标题
setMessage //设置里面的内容消息
setPositiveButton //设置积极按钮
setNegativeButton //设置消极按钮
这样是远远不够的,不要忘记最后要加一句显示语句。builder.show();不然点击会没有任何效果显示的。
activity_main的xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.dialog1.MainActivity" >
<Button
android:id="@+id/bt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="dialog"
/>
</RelativeLayout>