复选框没有显示在Android布局上

时间:2017-05-07 05:05:36

标签: android xml android-layout

我一直在尝试为我的Android应用程序的布局添加一个复选框,但它没有显示出来。显示复选框旁边的文本字段,但复选框本身仍然不可见。如何解决这个问题?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    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="com.example.lenovo.myapplication.MainActivity"
    android:orientation="vertical"
    android:background="#0000ff"
    >

    <EditText
        android:id="@+id/message"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Write your name"
        android:textSize="50sp"
        android:inputType="text"
        android:layout_margin="16dp"
    />
    <TextView
        android:layout_margin="16dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Topping"
         android:textSize="50sp"/>
    <CheckBox
        android:layout_width="500sp"
        android:layout_height="50sp"
        android:text="new checkbox"
        android:textSize="50sp"
        android:scaleX="0.7"
        android:scaleY="0.7"
        android:buttonTint="#000000"
        />
</LinearLayout>

1 个答案:

答案 0 :(得分:1)

尝试此复选框xml

<CheckBox
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="new checkbox"
    android:textSize="16sp"
    android:scaleX="0.7"
    android:scaleY="0.7"
    android:buttonTint="#000000"/>