当我们在android中显示AlertDialog时,它将显示在屏幕中央。有什么方法可以改变头寸吗?
当我们在android中显示AlertDialog时,它将显示在屏幕中央。有什么方法可以改变头寸吗?
Answers:
在各种帖子中搜索后,我找到了解决方案。
该代码发布在下面:
private CharSequence[] items = {"Set as Ringtone", "Set as Alarm"};
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setItems(items, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int item) {
if(item == 0) {
} else if(item == 1) {
} else if(item == 2) {
}
}
});
AlertDialog dialog = builder.create();
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
WindowManager.LayoutParams wmlp = dialog.getWindow().getAttributes();
wmlp.gravity = Gravity.TOP | Gravity.LEFT;
wmlp.x = 100; //x position
wmlp.y = 100; //y position
dialog.show();
x位置的值是从左到右的像素。对于y,位置值是从下到上。
wmlp.x = 100; //x position wmlp.y = 100;
设置重力wmlp.gravity = Gravity.TOP | Gravity.LEFT;
就够了
例如,如果您想将进度对话框往下移一点,而不是设置exakt像素位置,那么这就足够了:
progressDialog.getWindow().getAttributes().verticalMargin = 0.2F;
这些答案将移动AlertDialog的位置,但是,显示的对话框的位置还将包括对话框周围的填充。
如果要摆脱这种填充(例如,使对话框与屏幕底部齐平),则还需要覆盖styles.xml中的默认AlertDialog样式,以将windowBackground设置为null,如下所示:
<resources>
<!-- Example app theme - mine uses the below -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:alertDialogTheme">@style/MyDialogTheme</item>
</style>
<style name="MyDialogTheme" parent="Theme.AppCompat.Light.Dialog.Alert">
<!-- Full width -->
<item name="android:layout_width">fill_parent</item>
<!-- Null window background kills surrounding padding -->
<item name="android:windowBackground">@null</item>
<item name="android:windowNoTitle">true</item>
</style>
</resources>
以及按照接受的答案中所述设置Window.LayoutParameters。
@David Caunt特别鸣叫,答案是:删除边框,从Dialog填充以完成此图片。