DialogFrament是Android sdk中的对话框基类,开发人员可以针对此类进行扩展。他可以扩展出Android中的多种对话框,比如alertdialog,listdialog,radiodialog等。android已经为开发人员提供了简单的对话框,本篇要讲的是对话框的扩展部分。本例是根据sdk开发文档而来。
1.建立textdialog
在layout文件夹下面,建立textdialog的xml文档。在xml文档中,我们只定义了一个textview。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" > <TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content" /> </LinearLayout>
textdialog
2.建立textdialog类
在src中添加新类TextDialogFragment,该类需要继承DialogFragment,并需要实现它的一些方法,比如onCreate(),onCreateView()等。在类中主要是为textview设置需要显示的字段,以及设置dialog显示的样式和主题等。这里是对DialogFragment扩展的主要部分,我们可以再这里定义自己的方法,定义事件等。不如诗listdialog,需要定义适配器,需要定义itemclick。
public class TextDialogFramnet extends DialogFragment { int mNum; static TextDialogFramnet newInstance(int num)
{
TextDialogFramnet textdia=new TextDialogFramnet();
Bundle bundel=new Bundle();
bundel.putInt("name", num);
textdia.setArguments(bundel);
return textdia;
}
public void onCreate(Bundle saveInstanced)
{
super.onCreate(saveInstanced);
mNum=getArguments().getInt("name");
int style=DialogFragment.STYLE_NO_TITLE,theme=0;
switch((mNum-1)%6)
{
case 1:
style=DialogFragment.STYLE_NO_TITLE;
break;
case 2:
style=DialogFragment.STYLE_NO_FRAME;
case 3:
style = DialogFragment.STYLE_NO_INPUT;
break;
case 4:
style = DialogFragment.STYLE_NORMAL;
break;
case 5:
style = DialogFragment.STYLE_NORMAL;
break;
case 6:
style = DialogFragment.STYLE_NO_TITLE;
break;
case 7:
style = DialogFragment.STYLE_NO_FRAME;
break;
case 8:
style = DialogFragment.STYLE_NORMAL;
break;
}
switch((mNum-1)%6)
{
case 4:
theme=android.R.style.Theme_Holo; break;
case 5:
theme=android.R.style.Theme_Holo_Light_Dialog;
break;
case 6: theme = android.R.style.Theme_Holo_Light; break;
case 7: theme = android.R.style.Theme_Holo_Light_Panel; break;
case 8: theme = android.R.style.Theme_Holo_Light; break;
}
setStyle(style,theme);
}
public View onCreateView(LayoutInflater inflater,ViewGroup contaniner,Bundle savedInstance)
{
View v=inflater.inflate(R.layout.textdialog, contaniner,false);
TextView tv=(TextView)v.findViewById(R.id.text);
tv.setText("Dialog#"+mNum+":using style");
return v; }
}
TexDialogFragment
3.调用textdialog
在我们的activity中调用刚刚定义的对话框,首先需要对话框的实例化,然后根据对话框的需要,调用对话框的方法。最后是调用show()方法,显示该对话框。
void showDialog() {
mStackLevel++; android.app.FragmentTransaction ft = getFragmentManager().beginTransaction();
android.app.Fragment prev = getFragmentManager().findFragmentByTag("dialog");
if (prev != null) {
ft.remove(prev);
}
ft.addToBackStack(null); // Create and show the dialog.
DialogFragment newFragment = TextDialogFramnet.newInstance(mStackLevel);
newFragment.show(ft, "dialog");
}
showdialog
4.alertDialog
alertdialog 是sdk封装好的一个对话框,我们可以直接调用的。需要注意的是,该类是静态的,无需实例化,可以直接调用。
new AlertDialog.Builder(MainActivity.this).setIcon(R.drawable.ic_launcher)
.setTitle("是否删除文件").setPositiveButton("确定", new DialogInterface.OnClickListener() { @Override
public void onClick(DialogInterface dialog, int which) {
// TODO 自动生成的方法存根
new AlertDialog.Builder(MainActivity.this).setMessage("文件已经被删除").create().show();
}
})
.setNegativeButton("取消", new DialogInterface.OnClickListener() { @Override
public void onClick(DialogInterface dialog, int which) {
// TODO 自动生成的方法存根
new AlertDialog.Builder(MainActivity.this).setMessage("您已经选择取消按钮,文件未删除").create().show();
}
})
.show();
AlertDialog
该段代码实现了提示对话框,当我们删除的时候,可以弹出该对话框,并设置了setpositivebutton和setnegativebutton两个监听事件,分别对应确定和取消按钮。