我AlertDialog
在Activity中做了一个简单的说明:
View view = layoutInflater.inflate(R.layout.my_dialog, null);
AlertDialog infoDialog = new AlertDialog.Builder(MyActivity.this)
.setView(view)
.create();
infoDialog.show();
使用以上代码,对话框将显示在屏幕中心(大约)。
我想知道,如何自定义对话框位置以使其显示在顶部操作栏下方?(是否有改变重力或对话框的内容?)以及如何根据我的代码进行操作?
如果您向我们展示my_dialog xml布局,我们可能会帮助您进行更改。
—
艾伦·摩尔
@ Ankit,您能否将您的评论作为答案,因为检查您的链接后我的问题得到解决。
—
Leem.fin 2012年