Android 可绘制按钮不显示
Android Button drawable doesnt show
我想要一个圆形按钮。它按预期显示在设计器上,但当 运行 时按钮本身不会显示在实际设备上,当我单击按钮的位置时它也完全没有任何作用。
为什么按钮不显示?
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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"
android:background="#000">
<android.support.v7.widget.AppCompatButton
android:id="@+id/security_calling_disarm"
android:layout_width="wrap_content"
android:layout_height="82dp"
android:layout_marginBottom="91dp"
android:layout_marginStart="56dp"
android:background="@drawable/security_calling_disarm"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />
可绘制文件
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<solid android:color="#00FF00"/>
</shape>
请确保您也添加了顶部和末端约束。正如文档所说,如果您没有设置所有约束,它可能会在 运行 之后以不正确的方式显示在真实设备中。
由于您将 layout_width
设置为 wrap_content
,形状缺少要绘制的宽度。
试试把它改成这样:
<android.support.v7.widget.AppCompatButton
android:id="@+id/security_calling_disarm"
android:layout_width="0dp"
android:layout_height="82dp"
android:layout_marginBottom="91dp"
android:layout_marginStart="56dp"
android:background="@drawable/security_calling_disarm"
android:visibility="visible"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />
这样 app:layout_constraintDimensionRatio="1:1"
和 android:layout_width="0dp"
将确保宽度与高度匹配。
我想要一个圆形按钮。它按预期显示在设计器上,但当 运行 时按钮本身不会显示在实际设备上,当我单击按钮的位置时它也完全没有任何作用。
为什么按钮不显示?
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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"
android:background="#000">
<android.support.v7.widget.AppCompatButton
android:id="@+id/security_calling_disarm"
android:layout_width="wrap_content"
android:layout_height="82dp"
android:layout_marginBottom="91dp"
android:layout_marginStart="56dp"
android:background="@drawable/security_calling_disarm"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />
可绘制文件
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<solid android:color="#00FF00"/>
</shape>
请确保您也添加了顶部和末端约束。正如文档所说,如果您没有设置所有约束,它可能会在 运行 之后以不正确的方式显示在真实设备中。
由于您将 layout_width
设置为 wrap_content
,形状缺少要绘制的宽度。
试试把它改成这样:
<android.support.v7.widget.AppCompatButton
android:id="@+id/security_calling_disarm"
android:layout_width="0dp"
android:layout_height="82dp"
android:layout_marginBottom="91dp"
android:layout_marginStart="56dp"
android:background="@drawable/security_calling_disarm"
android:visibility="visible"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />
这样 app:layout_constraintDimensionRatio="1:1"
和 android:layout_width="0dp"
将确保宽度与高度匹配。