Ich werde schreiben, was zu tun ist, nachdem ich das Materialdesign in das Android-Projekt eingeführt habe. Dies erfolgt für Hello World nach dem Erstellen eines Android-Projekts.
Um das Materialdesign einzuführen, schreiben Sie build.gradle
wie folgt.
build.gradle
// material design
api 'com.google.android.material:material:1.2.0-alpha06'
Schreiben Sie res / values / styles.xml
wie folgt.
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
Ändern Sie "res / layout / activity_main.xml" und überprüfen Sie die Anzeige.
<?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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Bestätigung"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
Stellen Sie sicher, dass die folgende Anzeige angezeigt wird
Wenn Sie "res / values / styles.xml" im Standardzustand belassen, wird der folgende Fehler angezeigt.
Error inflating class com.google.android.material.button.MaterialButton
Recommended Posts