gpt4 book ai didi

java - 自定义alertdialog android api 10

转载 作者:行者123 更新时间:2023-12-01 13:30:00 24 4
gpt4 key购买 nike

我想知道如何使用sdk api 10自定义AlertDialog的主题/样式。我知道如何从 11 号开始执行此操作,但不知道如何在 10 号执行此操作。

XML布局文件

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
style="@style/dialog_theme" >
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/disclaimerText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/disclaimer"
android:padding="5dp"/>

<CheckBox
android:id="@+id/checkDisclaimer"
style="?android:attr/textAppearanceMedium"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:text="@string/agree" />
</LinearLayout>
</ScrollView>

JAVA资源文件

AlertDialog.Builder builder = new AlertDialog.Builder(this);
//Setting Dialog Title
builder.setTitle("Disclaimer");
//Setting Dialog Message
builder.setMessage(R.string.disclaimer);
View view = (View) LayoutInflater.from(this).inflate(R.layout.layout_disclaimer, null);
builder.setView(view);

最佳答案

你可以试试这个:

View myView = View.inflate(this, R.layout.customize_dialog, null);

AlertDialog.Builder builder=new AlertDialog.Builder(this);
builder.setView(myView);
builder.setTitle("Customize dialog");
builder.setCancelable(false);
AlertDialog alert=builder.create();
alert.show();

您必须在 res/layout/中创建一个名为customize_dialog.xml 的布局,您还可以向“myView”添加其他 View 对象。

添加典型警报按钮:

builder.setPositiveButton("Ok",new OnClickListener(){
public void onClick(DialogInterface dialog, int id){
//action to do
dialog.dismiss();
}
});


builder.setNegativeButton("Close",new OnClickListener(){
public void onClick(DialogInterface dialog, int id){
//action to do
dialog.dismiss();
}
});

希望对你有帮助。

关于java - 自定义alertdialog android api 10,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21623795/

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