这是XML:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/LightStyle"
android:layout_width="fill_parent"
android:layout_height="55dip"
android:clickable="true"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" />
</RelativeLayout>
如何以编程方式设置样式属性?
如果您想继续使用XML(公认的答案不允许您这样做)并在创建视图后设置样式,那么您可以使用Paris库,它支持所有可用属性的一个子集。
因为你正在从XML扩展视图,你需要在布局中指定一个id:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_styleable_relative_layout"
style="@style/LightStyle"
...
然后,当你需要以编程方式改变样式时,在布局被膨胀后:
// Any way to get the view instance will do
RelativeLayout myView = findViewById(R.id.my_styleable_relative_layout);
// This will apply all the supported attribute values of the style
Paris.style(myView).apply(R.style.LightStyle);
更多信息:支持的视图类型和属性列表(包括背景、填充、边距等,并且可以很容易地扩展)和附加文档的安装说明。
声明:我是该库的原始作者。
我发现最好的简单解决方案,使用alertDialog自定义布局,是:
val mView = LayoutInflater.from(context).inflate(layoutResId, null)
val dialog = AlertDialog.Builder(context, R.style.CustomAlertDialog)
.setView(mView)
.setCancelable(false)
.create()
风格在哪里
<style name="CustomAlertDialog" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:background">@drawable/bg_dialog_white_rounded</item>
</style>
bg_dialog_white_rounded.xml是
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="16dp" />
<solid android:color="@Color/white" />
</shape>
layoutResId是任何必须将主题设置为“@style/CustomAlertDialog”的布局的资源id,例如:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="@dimen/wdd_margin_medium"
android:theme="@style/CustomAlertDialog"
android:layout_marginEnd="@dimen/wdd_margin_medium">
..... etc...
</androidx.constraintlayout.widget.ConstraintLayout>
对于一个新的按钮/TextView:
Button mMyButton = new Button(new ContextThemeWrapper(this, R.style.button_disabled), null, 0);
对于已存在的实例:
mMyButton.setTextAppearance(this, R.style.button_enabled);
对于图像或布局:
Image mMyImage = new ImageView(new ContextThemeWrapper(context, R.style.article_image), null, 0);