为什么复选框文本没有通过android:text出现,请问有什么原因吗?

时间:2019-05-06 09:58:04

标签: android checkbox

复选框文本未通过android:text显示。尝试通过更改文本颜色来实现,但结果相同。为什么会这样?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:app="http://schemas.android.com/tools"
android:id="@+id/ll_parent_adapter"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<android.support.v7.widget.CardView
    android:id="@+id/resudlt_cv"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginLeft="4dp"
    android:layout_marginRight="4dp"
    android:layout_marginTop="4dp"
    app:cardElevation="20dp"
    app:cardPreventCornerOverlap="true">

  <LinearLayout
    android:visibility="gone"
    android:id="@+id/llCheckBox"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:orientation="horizontal">

    <CheckBox
        android:id="@+id/checkBoxMarkAsComplete"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:text="Mark as complete"
        android:textColor="@color/colorBlack"
        android:buttonTint="@color/colorVendorCheckBox"/>

</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>

以上是根据请求给出的完整xml。

2 个答案:

答案 0 :(得分:0)

尝试一下:

<CheckBox
        android:id="@+id/checkBoxMarkAsComplete"
        android:layout_width="wrap_content" \\ change this line
        android:layout_height="30dp"
        tools:text="try this"
        android:textColor="@color/colorBlack"
        android:buttonTint="@color/colorVendorCheckBox"
        android:text="@string/Mark_as_complete" />

并将其添加到根视图:

 xmlns:tools="http://schemas.android.com/tools"

答案 1 :(得分:0)

您已设置layout_width来固定30dp的值。尝试将复选框宽度设置为wrap_content.