plectrum

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 50e75b7c177e135cc8f8782195629bd02c57c099
parent 5c27c6d8726a3c4bb836b519ddf49b3ff7e0d678
Author: gstraube <gstraube@mailbox.org>
Date:   Sun,  9 Jul 2017 20:33:39 +0200

Use linear layout

Diffstat:
Mapp/src/main/res/layout/activity_main.xml | 17+++++------------
1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml @@ -1,6 +1,5 @@ <?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" +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" @@ -8,13 +7,7 @@ <com.github.cythara.TunerView android:id="@+id/pitch" - app:layout_constraintRight_toRightOf="parent" - app:layout_constraintTop_toTopOf="parent" - android:layout_height="587dp" - android:layout_width="395dp" - android:layout_marginTop="0dp" - android:layout_marginRight="8dp" - app:layout_constraintBottom_toBottomOf="parent" - android:layout_marginBottom="8dp" /> + android:layout_width="match_parent" + android:layout_height="match_parent" /> -</android.support.constraint.ConstraintLayout> -\ No newline at end of file +</LinearLayout> +\ No newline at end of file