材料按钮在预览中未正确显示

10
这个问题与我的另一个问题有关:Material Button - 样式未正确应用,非常丑陋
在模拟器上运行正常。API为21,Android Studio v3.2.1。有没有办法修复它? 预览: enter image description here 布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">

    <com.google.android.material.button.MaterialButton
            android:id="@+id/material_button"
            style="@style/Widget.MaterialComponents.Button.TextButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Test" app:layout_constraintStart_toStartOf="parent"
            android:layout_marginStart="76dp" app:layout_constraintTop_toTopOf="parent"
            android:layout_marginTop="108dp"/>

</android.support.constraint.ConstraintLayout>

Gradle:

    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
//    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.google.android.material:material:1.0.0-beta01'

清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.example.test.materialbuttontest01">

    <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:theme="@style/Theme.MaterialComponents.Light.NoActionBar">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>

                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
    </application>

</manifest>

我建议您参考您之前的问题,否则人们可能会将此标记为重复问题。在看到您的(新)答案之前,我确实认为它是相同的。 - TheWanderer
完成。我认为最好是发布一个新问题,而不是试图在其他问题上获得答案。 - WoF_Angel
肯定是的。你做得对。你的标题很相似,内容也很相似,所以我建议链接它们。 - TheWanderer
2个回答

18

选择另一个主题即可生效。输入图像描述


文本内容,如下所示:在文本中包含图片中的细节 - Grant Foster

3

打开XML文件(例如activity_main.xml)的设计模式并将主题更改为AppTheme或其他任何主题。在我的情况下,使用AppTheme可以正常工作。 enter image description here


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接