暗色适用于手机上的复选框,但在Android工作室中看到确定

时间:2016-12-16 13:10:44

标签: android android-studio

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

    <font.CustomFontTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:textColor="@android:color/black"
        android:id="@+id/ngo_name"
        app:typeface="roboto_bold" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <CheckBox
            android:id="@+id/check_ngo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/black_tint"
            android:textSize="13dp"
            />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/ngo_desc_text"
            android:textStyle="bold"
            android:textColor="@color/black_tint"
            android:visibility="gone"

            />

    </LinearLayout>

</LinearLayout>

以下是xml文件中复选框的代码,我在充气机布局中调用此文件(如果相关),并在选中时显示蓝色刻度线。

在手机内查看复选框时:
Device
在Android Studio中查看复选框时:
https://i.stack.imgur.com/owrVq.png

1 个答案:

答案 0 :(得分:0)

使用boxTint作为框:( API级别23)

<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:buttonTint="@color/black_tint" />

对于较旧的API,请使用:

<android.support.v7.widget.AppCompatCheckBox 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
app:buttonTint="@color/black_tint" />