Add separate horizontal layouts

Thanks to an anonymous contributor
This commit is contained in:
xynngh 2020-10-19 00:24:50 +04:00
parent 74b2df76e4
commit 4534d2487a
4 changed files with 305 additions and 4 deletions

View File

@ -0,0 +1,116 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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=".AboutActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="@dimen/text_margin">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_gravity="center_horizontal"
android:contentDescription="@string/logo_description"
app:srcCompat="@drawable/logo" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="26dp"
android:text="@string/app_name"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="8dp"
android:text="@string/motto" />
</LinearLayout>
<Space
android:layout_width="20dp"
android:layout_height="match_parent" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/homepage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
tools:text="@string/homepage" />
<TextView
android:id="@+id/faq"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
tools:text="@string/faq" />
<TextView
android:id="@+id/translate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
tools:text="@string/translate" />
<TextView
android:id="@+id/issues"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
tools:text="@string/issues" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="@string/license" />
</LinearLayout>
</LinearLayout>
<TextView
android:id="@+id/app_version"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
tools:text="v0.5.8" />
<TextView
android:id="@+id/db_info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:gravity="center_horizontal"
android:longClickable="true"
android:onClick="onUpdateDbClicked"
tools:text="Database version: 1800\nLast update check: 1 minute ago" />
</LinearLayout>
</ScrollView>

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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"
tools:context=".DbManagementActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="@dimen/item_padding">
<TextView
android:id="@+id/debugResultsTextView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
tools:text="Some data" />
<Space
android:layout_width="16dp"
android:layout_height="match_parent" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onDbInfoButtonClick"
android:text="@string/db_management_db_info" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onUpdateDbButtonClick"
android:text="@string/db_management_update_db" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onResetDbClick"
android:text="@string/db_management_reset_base" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onResetSecondaryDbClick"
android:text="@string/db_management_reset_secondary" />
</LinearLayout>
</LinearLayout>
</ScrollView>

View File

@ -0,0 +1,127 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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"
tools:context=".LookupNumberActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="@dimen/item_padding">
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">
<com.google.android.material.textfield.TextInputLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/lookup_hint_input_number">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/phoneNumberInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="phone"
android:maxLength="50"
android:text="@string/lookup_default_test_number" />
</com.google.android.material.textfield.TextInputLayout>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/lookup_clear_number"
android:onClick="onClearNumberButtonClick"
android:src="@drawable/ic_clear_24dp" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/lookup_paste_number"
android:onClick="onPasteNumberButtonClick"
android:src="@drawable/ic_menu_paste_material" />
</LinearLayout>
<TextView
android:id="@+id/reviews_phone_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="6dp"
android:textSize="20sp"
tools:text="+74995861192" />
<include
layout="@layout/reviews_summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="6dp" />
<TextView
android:id="@+id/reviews_details"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="6dp"
android:ellipsize="end"
android:maxLines="1"
android:textSize="16sp"
tools:text="Financial service" />
</LinearLayout>
<Space
android:layout_width="16dp"
android:layout_height="match_parent" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_horizontal"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onQueryDbButtonClick"
android:text="@string/lookup_query_db" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onLoadReviewsButtonClick"
android:text="@string/lookup_load_reviews" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onAddReviewButtonClick"
android:text="@string/add_web_review" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>

View File

@ -9,8 +9,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical" android:orientation="vertical"
android:padding="@dimen/item_padding" android:padding="@dimen/item_padding">
tools:context=".LookupNumberActivity">
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
@ -74,7 +73,6 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" android:layout_gravity="center_horizontal"
android:layout_marginTop="6dp" android:layout_marginTop="6dp"
android:textAlignment="center"
android:textSize="20sp" android:textSize="20sp"
tools:text="+74995861192" /> tools:text="+74995861192" />
@ -91,7 +89,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" android:layout_gravity="center_horizontal"
android:layout_marginTop="6dp" android:layout_marginTop="6dp"
android:textAlignment="center" android:ellipsize="end"
android:textSize="16sp" android:textSize="16sp"
tools:text="Financial service" /> tools:text="Financial service" />