这里我有一个可扩展的列表视图
现在我在其中的子项中添加了一个复选框
我的孩子的视野越来越大 - 为什么以及如何将它缩小?
<?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:padding="10dp"
android:background="@drawable/mb">
<TextView
android:id="@+id/list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:paddingLeft="23dp"
android:textSize="18dp"
android:textStyle="bold"
android:textColor="#000000"
/>
<CheckBox
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:id="@+id/checkBox"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
/>
</RelativeLayout>
答案 0 :(得分:0)
更改复选框的dp
和layout_height
上的layout_width
(或其他任何内容)以获得所需的尺寸。例如:
<Checkbox
android:layout_width="1dp"
android:layout_height="1dp"
android:id="@+id/checkBox"/>
在您要重新调整大小的项目中。
另一种选择是使用自定义复选框,更多信息请点击此处:Android: How to change CheckBox size?