我设计了一个自定义警报对话框,如下所示:
我正在使用这种自定义样式:
<style name="MyDialogTheme" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:textColorPrimary">#24b2d1</item>
<item name="android:windowBackground">@drawable/dialog_background</item>
<item name="android:textColorAlertDialogListItem">#4D4343</item>
</style>
这是“ dialog_background”:
<?xml version="1.0" encoding="utf-8"?>
<inset xmlns:android="http://schemas.android.com/apk/res/android"
android:insetLeft="16dp"
android:insetTop="16dp"
android:insetRight="16dp"
android:insetBottom="16dp">
<shape android:shape="rectangle">
<corners android:radius="10dp" />
<solid android:color="#f7f7f7" />
<padding android:left="20dp" />
</shape>
我的疑问是,如何减少单选按钮和标签之间的距离?
我尝试过:
<item name="android:listPreferredItemPaddingLeft">2dp</item>
<item name="android:paddingLeft">5dp</item>
甚至使用以下方法制作了自定义单选按钮布局以使其正确:
<item name="radioButtonStyle">@layout/cutom_radio_button_layout</item>
所有这些都不起作用。
如何减小单选按钮和标签之间的距离?