diff options
| author | 2023-03-22 04:54:50 -0400 | |
|---|---|---|
| committer | 2023-06-03 00:05:45 -0700 | |
| commit | 9a842deba507d0f4ea5363c3db8d4295970ac884 (patch) | |
| tree | 37269cf8228a83f1e19776e8fc7cfc70bb83f054 /src | |
| parent | android: Remove unused premium header layout (diff) | |
| download | yuzu-9a842deba507d0f4ea5363c3db8d4295970ac884.tar.gz yuzu-9a842deba507d0f4ea5363c3db8d4295970ac884.tar.xz yuzu-9a842deba507d0f4ea5363c3db8d4295970ac884.zip | |
android: Remove citra date time picker
Diffstat (limited to 'src')
| -rw-r--r-- | src/android/app/src/main/res/layout/sysclock_datetime_picker.xml | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/android/app/src/main/res/layout/sysclock_datetime_picker.xml b/src/android/app/src/main/res/layout/sysclock_datetime_picker.xml deleted file mode 100644 index d082f5283..000000000 --- a/src/android/app/src/main/res/layout/sysclock_datetime_picker.xml +++ /dev/null | |||
| @@ -1,22 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | android:orientation="vertical" | ||
| 4 | android:layout_width="match_parent" | ||
| 5 | android:layout_height="match_parent" | ||
| 6 | android:padding="8dp" | ||
| 7 | android:gravity="center"> | ||
| 8 | |||
| 9 | <DatePicker | ||
| 10 | android:id="@+id/date_picker" | ||
| 11 | android:layout_width="match_parent" | ||
| 12 | android:layout_height="wrap_content" | ||
| 13 | android:calendarViewShown="false" | ||
| 14 | android:datePickerMode="spinner" | ||
| 15 | android:spinnersShown="true" /> | ||
| 16 | |||
| 17 | <TimePicker | ||
| 18 | android:id="@+id/time_picker" | ||
| 19 | android:layout_width="match_parent" | ||
| 20 | android:layout_height="wrap_content" | ||
| 21 | android:timePickerMode="spinner" /> | ||
| 22 | </LinearLayout> | ||