I am working on Android Wear OS App development with Android Studio I got report by Google like this.
As you can see I got issue with the NumberPicker.
<NumberPicker
android:id="@+id/numberPickerSecond"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_weight="1"
android:descendantFocusability="blocksDescendants"
android:formatter="@{model::formatNumber}"
android:value="@={model.secondPickerValue}"
app:maxValue="@{60}"
app:minValue="@{0}" />
Here is Layout of my Timer. How to fix for Report issue?
I tried to add android:importantForAccessibility="no"
on NumberPicker
.
But I can make sure it works or not.
Try
The two values
00
and60
mean the same...