gpt4 book ai didi

android - 如何更改android中的警报对话框样式

转载 作者:行者123 更新时间:2023-11-29 01:24:59 24 4
gpt4 key购买 nike

我只是想为我的 android 应用程序构建一个警报对话框。

我真正想要的是这样一个对话框: enter image description here

整个对话框的正反按钮都被填充了

但我总是得到这样的结果:

enter image description here

并且这两个按钮粘在一起在对话框的右上角

谁能告诉我如何将警报对话框从第二个更改为第一个?

非常感谢

最佳答案

为此,您需要像这样创建自定义 dilogbox对话框 xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ImageView
android:id="@+id/image"
android:layout_width="50dp"
android:layout_height="50dp"
android:contentDescription="@drawable/ic_launcher"
android:src="@drawable/ic_launcher" />

<Button
android:id="@+id/button"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_below="@+id/image"
android:layout_centerHorizontal="true"
android:text="Dismiss" />

<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_above="@+id/button"
android:layout_toRightOf="@+id/image"
android:gravity="center_vertical"
android:textAppearance="?android:attr/textAppearanceMedium" />

</RelativeLayout>

在你的 Activity 中:

final Dialog dialog = new Dialog(MainActivity.this);

//setting custom layout to dialog
dialog.setContentView(R.layout.cusotm_dialog_layout);
dialog.setTitle("Custom Dialog");

//adding text dynamically
TextView txt = (TextView) dialog.findViewById(R.id.textView);
txt.setText("Put your dialog text here.");

ImageView image = (ImageView)dialog.findViewById(R.id.image);
image.setImageDrawable(getResources().getDrawable(android.R.drawable.ic_dialog_info));

//adding button click event
Button dismissButton = (Button) dialog.findViewById(R.id.button);
dismissButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
}
});
dialog.show();

关于android - 如何更改android中的警报对话框样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34552883/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com