Android主题覆盖所有颜色



我有一个XML文件,它定义了颜色和可绘制的应用程序UI,但它们似乎都被theme . XML的主题覆盖了。如何禁用此功能?

的例子:

按钮:

<Button
android:id="@+id/capture_button"
android:layout_width="match_parent"
android:background="@drawable/round_button"
android:layout_height="0dp"
android:text="@string/capture_button_text_en"
android:textColor="@color/white"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/camera_activity_frameLayout">
</Button>

应该有一个黑色背景,因为在round_button.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/black"/>
<corners android:radius="7dp"/>
<stroke android:width="1dp" android:color="@color/white"/>
</shape>

然而,它是紫色的,来自主题的颜色:

<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.myproject" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_500</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorOnPrimary">@color/white</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>
<item name="colorSecondaryVariant">@color/teal_700</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
</resources>

如何重写这个主题?

由于应用程序的主题扩展了一个MaterialComponents主题(theme . materialcomponents . daynight . noactionbar),它将接管视图膨胀,并用相应的MaterialComponents替换一些小部件。这意味着,如果你的视图定义了一个按钮,你会得到一个MaterialButton,结果它改变了你应该如何控制按钮的外观。您不应该再使用背景属性,而应该使用这里和这里讨论的属性。这个过程在这篇博文中有更多的解释。

现在得到一个黑色的材料按钮与白色的轮廓,你想使用Widget.MaterialComponents.Button.OutlinedButton样式:

<Button
android:id="@+id/capture_button"
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
android:layout_width="match_parent"
android:layout_height="0dp"
android:text="@string/capture_button_text_en"
android:textColor="@color/white"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:shapeAppearance="@style/ShapeAppearance.MyApp.LargeComponent"
app:backgroundTint="@color/black"
app:strokeWidth="1dp"
app:strokeColor="#ffffff"
app:layout_constraintTop_toBottomOf="@+id/camera_activity_frameLayout"/>

您还需要在您的styles.xml中使用以下内容以7dp角半径圆角(从您的原始背景绘制中看到):

<style name="ShapeAppearance.MyApp.LargeComponent" parent="ShapeAppearance.MaterialComponents.MediumComponent">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">7dp</item>
</style>

相关内容

  • 没有找到相关文章

最新更新