UI improvements. Completed #14 and #20

This commit is contained in:
amazing-username
2019-03-05 21:39:23 -05:00
parent 4effe37517
commit 48d4ffe5df
21 changed files with 280 additions and 375 deletions
@@ -0,0 +1,34 @@
<?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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".activities.SettingsActivity"
tools:showIn="@layout/activity_settings">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/dm"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/RefreshLibrary"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:lineSpacingExtra="12sp"
android:text="@string/update_library"
android:textSize="18sp"
android:textStyle="bold" />
</LinearLayout>
</FrameLayout>
</android.support.constraint.ConstraintLayout>