[Android] Update layouts

This commit is contained in:
zilmar 2021-10-14 19:43:36 +10:30
parent 331aac7678
commit 1c22355295
4 changed files with 46 additions and 21 deletions

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dip"
android:paddingStart="?attr/listPreferredItemPaddingStart"
android:paddingEnd="?attr/listPreferredItemPaddingEnd"
android:paddingTop="10dip"
android:textColor="?colorAccent"
android:textStyle="bold"
android:textSize="24dp" />
</LinearLayout>

View File

@ -2,7 +2,8 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical" > xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">
<TextView <TextView
android:id="@+id/scanRomsDialog_selectDir" android:id="@+id/scanRomsDialog_selectDir"
@ -23,7 +24,10 @@
android:id="@+id/ScanRecursively" android:id="@+id/ScanRecursively"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:padding="10dp" /> android:padding="10dp"
android:textColor="@color/TextColor"
app:buttonTint="@color/TextColor"
/>
<RelativeLayout <RelativeLayout
android:id="@+id/linearLayoutButtons" android:id="@+id/linearLayoutButtons"
android:layout_width="match_parent" android:layout_width="match_parent"
@ -37,7 +41,8 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/buttonOk" android:layout_toLeftOf="@+id/buttonOk"
android:layout_toStartOf="@+id/buttonOk" android:layout_toStartOf="@+id/buttonOk"
android:text="@android:string/cancel" /> android:text="@android:string/cancel"
android:textColor="@color/ButtonTextColor" />
<Button <Button
android:id="@+id/buttonOk" android:id="@+id/buttonOk"
@ -45,6 +50,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentRight="true" android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" android:layout_alignParentEnd="true"
android:text="@android:string/ok" /> android:text="@android:string/ok"
android:textColor="@color/ButtonTextColor" />
</RelativeLayout> </RelativeLayout>
</LinearLayout> </LinearLayout>

View File

@ -1,18 +1,18 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:orientation="vertical"> android:orientation="vertical">
<android.support.v7.widget.Toolbar <androidx.appcompat.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar" android:id="@+id/toolbar"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" android:layout_height="?attr/actionBarSize"
android:background="?attr/background_actionbar" android:theme="@style/Theme.Project64.ToolBar"
android:theme="@style/Project64.Toolbar" /> app:titleTextAppearance="@style/Theme.Project64.ToolBar.TitleText"
/>
<FrameLayout <FrameLayout
android:id="@+id/fragment_placeholder" android:id="@+id/fragment_placeholder"
android:layout_width="fill_parent" android:layout_width="fill_parent"

View File

@ -5,17 +5,18 @@
android:layout_height="match_parent" android:layout_height="match_parent"
android:orientation="vertical" android:orientation="vertical"
tools:ignore="UseCompoundDrawables" > tools:ignore="UseCompoundDrawables" >
<ImageView android:id="@+id/mainImage" <ImageView
android:layout_width="wrap_content" android:id="@+id/mainImage"
android:layout_gravity="center" android:layout_width="wrap_content"
android:layout_height="match_parent" android:layout_height="match_parent"
android:scaleType="fitXY" android:layout_gravity="center"
android:adjustViewBounds="true" android:layout_weight="1"
android:contentDescription="@string/app_name" android:adjustViewBounds="true"
android:src="@drawable/publisherlogo" android:contentDescription="@string/app_name"
android:layout_weight="1" android:scaleType="fitXY"
/> android:src="@drawable/publisherlogo"
tools:src="@drawable/publisherlogo" />
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"