您好我有一个简单的应用程序,它使用布局的清单。奇怪的是,CheckBox
在我的Galaxy手机(ANDROID V5.0.1)上效果很好,但出于某种原因,当我在平板电脑上使用相同的应用程序(ANDROID V4.2.2)时,CheckBox
在点击时消失,任何想法会有所帮助,谢谢!
XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="6dip"
android:background="#FFFFFF">
<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_marginRight="20dp"
android:buttonTint="#0870f8" />
<TextView
android:id="@+id/code"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:layout_centerVertical="true"
android:layout_toEndOf="@+id/imageView2"
android:layout_marginLeft="20dp" />
<ImageView
android:layout_width="25dp"
android:layout_height="25dp"
android:id="@+id/imageView2"
android:layout_centerVertical="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="20dp" />
</RelativeLayout>
答案 0 :(得分:1)
我只是猜测,因为我这里没有平板电脑,你没有提供有关Android版本的任何信息。 我认为您的复选框不会消失,尝试将RelativeLayout的背景更改为任何颜色(如红色或蓝色)以检查它是否真的消失。 希望这会有所帮助。