diff options
author | Javier <dev.git@javispedro.com> | 2020-02-16 22:18:38 +0100 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2020-02-16 22:18:38 +0100 |
commit | 0a72437088b3e8387aa6ab77e20293bc2385788a (patch) | |
tree | d9add727dee224eda5d4d4823a08ce14e37f107f /app/src/main/res/layout | |
parent | e88fb30dd01e64a0b2bfd1baec949b1836772fc0 (diff) | |
download | vndroid-0a72437088b3e8387aa6ab77e20293bc2385788a.tar.gz vndroid-0a72437088b3e8387aa6ab77e20293bc2385788a.zip |
update to sdk 29, migrate to androidx, new GUI
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/activity_setup.xml | 45 | ||||
-rw-r--r-- | app/src/main/res/layout/settings_activity.xml | 9 |
2 files changed, 9 insertions, 45 deletions
diff --git a/app/src/main/res/layout/activity_setup.xml b/app/src/main/res/layout/activity_setup.xml deleted file mode 100644 index 9512149..0000000 --- a/app/src/main/res/layout/activity_setup.xml +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<android.support.constraint.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:layout_width="match_parent" - android:layout_height="match_parent" - tools:context=".SetupActivity"> - - <LinearLayout - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginStart="8dp" - android:layout_marginTop="8dp" - android:layout_marginEnd="8dp" - android:layout_marginBottom="8dp" - android:gravity="center" - android:orientation="horizontal" - app:layout_constraintBottom_toBottomOf="parent" - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toTopOf="parent" - app:layout_constraintVertical_bias="0.19"> - - <Button - android:id="@+id/btnStart" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:onClick="onStartClick" - android:text="@string/action_start" /> - - <Space - android:layout_width="75dp" - android:layout_height="wrap_content" - android:layout_weight="1" /> - - <Button - android:id="@+id/btnStop" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:onClick="onStopClick" - android:text="@string/action_stop" /> - - </LinearLayout> - -</android.support.constraint.ConstraintLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/settings_activity.xml b/app/src/main/res/layout/settings_activity.xml new file mode 100644 index 0000000..de6591a --- /dev/null +++ b/app/src/main/res/layout/settings_activity.xml @@ -0,0 +1,9 @@ +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <FrameLayout + android:id="@+id/settings" + android:layout_width="match_parent" + android:layout_height="match_parent" /> +</LinearLayout>
\ No newline at end of file |