Я использую круговое позиционирование из ConstraintLayout для организации кнопок по кругу:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/constraintLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="center"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/one"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintCircle="@id/center"
app:layout_constraintCircleRadius="100dp"
app:layout_constraintCircleAngle="51"
android:text="one"/>
<Button
android:id="@+id/two"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintCircle="@id/center"
app:layout_constraintCircleRadius="100dp"
app:layout_constraintCircleAngle="103"
android:text="two"/>
...
</androidx.constraintlayout.widget.ConstraintLayout>
Однако, если у меня семь кнопок, организованных по кругу, кнопки на 0 и 180 градусов расположены слишком близко к другим кнопкам, поэтомуЯ хочу установить верхнее и нижнее поле для этих кнопок. Кроме того, я хочу установить поля между некоторыми кнопками, т.е. левым или правым полем.
Например, мне интересно, можно ли программно установить поля на кнопка SEVEN а также между кнопкой четыре и тремя , без необходимости изменения значения layout_constraintCircleRadius ?
Пожалуйста, проверьте этот снимок экрана, чтобы лучше понять: кнопки в круге
Вывод будет примерно таким.