可扩展列表视图复选框更小
expandable list view checkbox smaller
这里我有一个可展开的列表视图
现在我在下面的孩子中放了一个复选框
我的 childview 变大了 - 为什么以及如何将它设置得更小?
<?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>
更改 layout_height
和 layout_width
复选框(或其他任何东西)上的 dp
以获得您需要的大小。例如:
<Checkbox
android:layout_width="1dp"
android:layout_height="1dp"
android:id="@+id/checkBox"/>
在您要调整尺寸的项目中。
另一种选择是使用自定义复选框,更多信息请参见:Android: How to change CheckBox size?
这里我有一个可展开的列表视图
现在我在下面的孩子中放了一个复选框
我的 childview 变大了 - 为什么以及如何将它设置得更小?
<?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>
更改 layout_height
和 layout_width
复选框(或其他任何东西)上的 dp
以获得您需要的大小。例如:
<Checkbox
android:layout_width="1dp"
android:layout_height="1dp"
android:id="@+id/checkBox"/>
在您要调整尺寸的项目中。
另一种选择是使用自定义复选框,更多信息请参见:Android: How to change CheckBox size?