gpt4 book ai didi

android - 更改对话框android的颜色

转载 作者:行者123 更新时间:2023-11-29 00:05:14 32 4
gpt4 key购买 nike

我正在使用 Android 对话框

enter image description here

我想在这个对话框中删除两个黑色。但是我好像做不到。

这是我的布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/color_loading_background_white">
<ImageView
android:src="@drawable/ic_logo"
android:layout_width="230dp"
android:layout_height="64dp"
android:layout_marginTop="10dp"
android:scaleType="centerCrop"
android:contentDescription="@string/app_name"
android:layout_gravity="center_horizontal"/>
<EditText
android:id="@+id/username"
android:inputType="text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="4dp"
android:hint="Enter username" />

</LinearLayout>

这是我创建对话框时的代码。

public static void showDialog(Activity activity, int layout, final IOnOkClicked cb, final IOnCancelClicked cb2) {
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
// Get the layout inflater
LayoutInflater inflater = activity.getLayoutInflater();

// Inflate and set the layout for the dialog
// Pass null as the parent view because its going in the dialog layout
builder.setView(inflater.inflate(layout, null))
// Add action buttons
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int id) {
if (cb != null) {
cb.onClick();
}
}
})
.setCancelable(false);

if (cb2 != null) {
builder.setNegativeButton(activity.getString(R.string.cancel), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
cb2.onClick();
}
});
}
builder.create().show();

}

请给我一些建议。谢谢!

最佳答案

使用这几行代码去除边框

alertDialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));

或者使用这些简单的代码行

 AlertDialog alertbox = new AlertDialog.Builder(context, AlertDialog.THEME_HOLO_LIGHT);

关于android - 更改对话框android的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34326886/

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