
Я думал, что такой макет подойдет, но в результате получается большой ProgressBar< /code> в центре экрана:
Код: Выделить всё
android:id="@+id/progress_bar"
style="@android:style/Widget.Material.ProgressBar.Large"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
Я обнаружил, что вы можете использовать список слоев, чтобы изменить размер ProgressBar: р>
Код: Выделить всё
Код: Выделить всё
GradientDrawable gradientDrawable = new GradientDrawable();
gradientDrawable.setInnerRadius(18);
((ProgressBar)findViewById(R.id.progress_bar)).setProgressDrawable(gradientDrawable);
Подробнее здесь: https://stackoverflow.com/questions/704 ... -on-wearos
Мобильная версия