本文整理汇总了Java中android.content.DialogInterface.show方法的典型用法代码示例。如果您正苦于以下问题:Java DialogInterface.show方法的具体用法?Java DialogInterface.show怎么用?Java DialogInterface.show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.content.DialogInterface
的用法示例。
在下文中一共展示了DialogInterface.show方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: dialogNoUpdate
import android.content.DialogInterface; //导入方法依赖的package包/类
private void dialogNoUpdate()
{
View view = getActivity().getLayoutInflater().inflate(R.layout.dialog_update, null);
TextView title = (TextView)view.findViewById(R.id.id_title);
TextView content = (TextView)view.findViewById(R.id.id_content_text);
title.setText(getResources().getString(R.string.updater_not_available_title));
content.setText(String.format(getResources().getString(R.string.updater_not_available_description), getResources().getString(R.string.app_name)));
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity())
.setView(view)
.setCancelable(true)
.setPositiveButton(getResources().getString(R.string.updater_btn_ok), new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int position)
{ }
});
dialog = builder.create();
dialog.show();
}
开发者ID:MSay2,项目名称:Mire,代码行数:24,代码来源:FragmentAbout.java本文标签属性:
示例:示例的拼音
代码:代码编程
java:java游戏
DialogInterface:DialogInterface
show:showmeyourpen翻译中文