我在Android(Android 5.1)中有一个RadioGroup
和2个RadioButton
,如下所示。有两个问题。首先,可点击区域(在底部的图像中以蓝色表示)不在按钮(圆圈)的中心。其次,我想增加可点击区域,但将圆圈(按钮)的大小保持不变。
如何增加按钮周围的可点击区域并使之居中?
<RadioGroup
android:id="@+id/group"
android:layout_width="140dp"
android:layout_height="50dp"
android:layout_marginLeft="212dp"
android:layout_marginTop="8dp"
android:orientation="horizontal"
android:visibility="visible"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toBottomOf="@+id/image"
tools:ignore="RtlHardcoded">
<RadioButton
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:layout_weight="1"
android:scaleX="2"
android:scaleY="2" />
<RadioButton
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="50dp"
android:layout_marginTop="5dp"
android:layout_weight="1"
android:scaleX="2"
android:scaleY="2" />
</RadioGroup>
编辑:我现在更新了布局并添加了填充。可单击的区域不会更大,但不幸的是该区域在按钮外部。我希望可点击区域位于按钮周围。该怎么办?
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="212dp"
android:layout_marginTop="8dp"
android:orientation="horizontal"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toBottomOf="@+id/image"
tools:ignore="RtlHardcoded">
<RadioButton
android:id="@+id/radioButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="40dp"
android:padding="30dp"
android:scaleX="2"
android:scaleY="2" />
<RadioButton
android:id="@+id/radioButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="55dp"
android:padding="30dp"
android:scaleX="2"
android:scaleY="2" />
</RadioGroup>
答案 0 :(得分:1)
增加可点击大小的最简单方法是使用填充
<RadioButton
android:id="@+id/someId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="40dp"
/>
这是图片
答案 1 :(得分:1)
final View parent = (View) view.getParent();
parent.post( new Runnable() {
public void run() {
final Rect rect = new Rect();
button.getHitRect(rect);
rect.top -= 100;
rect.left -= 100;
rect.bottom += 100;
rect.right += 100;
parent.setTouchDelegate( new TouchDelegate( rect , button));
}
});
增加视角的吸引力
答案 2 :(得分:0)
可能将单选按钮添加到线性布局内,将其居中,然后将onclicklistener置于线性布局上,然后单击以切换单选按钮的外观。
答案 3 :(得分:0)
要增加可点击区域的大小,可以将填充设置为RadioButton。