Bug Fixes

master
msmannan00 2020-10-22 14:14:58 +05:00
parent 9f33c8059f
commit 363dc9fa5a
9 changed files with 64 additions and 42 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 401 KiB

View File

@ -1,6 +1,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
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"
android:background="@color/white"
@ -16,6 +17,7 @@
android:layout_height="wrap_content">
<!-- Title Header -->
<LinearLayout
android:id="@+id/pHeaderContainerTop"
android:layout_width="match_parent"
@ -91,7 +93,13 @@
android:layout_height="55dp"
android:background="@xml/gx_ripple_gray"
android:orientation="horizontal"
android:weightSum="7">
android:weightSum="8">
<ImageView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:src="@drawable/genesis"/>
<LinearLayout
android:layout_width="0dp"
@ -153,7 +161,14 @@
android:layout_height="55dp"
android:background="@xml/gx_ripple_gray"
android:orientation="horizontal"
android:weightSum="7">
android:weightSum="8">
<ImageView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:padding="6dp"
android:src="@drawable/duckduckgo"/>
<LinearLayout
android:layout_width="0dp"
@ -215,7 +230,14 @@
android:layout_height="55dp"
android:background="@xml/gx_ripple_gray"
android:orientation="horizontal"
android:weightSum="7">
android:weightSum="8">
<ImageView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:padding="3dp"
android:src="@drawable/google"/>
<LinearLayout
android:layout_width="0dp"
@ -277,7 +299,13 @@
android:layout_height="55dp"
android:background="@xml/gx_ripple_gray"
android:orientation="horizontal"
android:weightSum="7">
android:weightSum="8">
<ImageView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:src="@drawable/bing"/>
<LinearLayout
android:layout_width="0dp"
@ -339,7 +367,14 @@
android:layout_height="55dp"
android:background="@xml/gx_ripple_gray"
android:orientation="horizontal"
android:weightSum="7">
android:weightSum="8">
<ImageView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:padding="4dp"
android:src="@drawable/wikipedia"/>
<LinearLayout
android:layout_width="0dp"
@ -414,6 +449,12 @@
android:text="@string/SETTING_SEARCH_HEADER_2"
/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/holo_gray_light"/>
<LinearLayout
android:id="@+id/pOption6"
android:layout_width="match_parent"
@ -431,34 +472,18 @@
<Button
android:layout_width="wrap_content"
android:layout_height="20dp"
android:layout_marginTop="8dp"
android:layout_marginTop="15dp"
android:alpha="0.7"
android:background="@android:color/transparent"
android:clickable="false"
android:padding="0dp"
android:paddingStart="15dp"
android:text="@string/SETTING_SEARCH_BING"
android:text="@string/SETTING_SEARCH_HISTORY"
android:textAlignment="textStart"
android:textAllCaps="false"
android:textColor="@color/blue_dark"
android:textSize="15sp"
tools:ignore="RtlSymmetry" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="2dp"
android:alpha="0.7"
android:background="@android:color/transparent"
android:clickable="false"
android:padding="0dp"
android:paddingStart="15dp"
android:text="@string/SETTING_SEARCH_BING"
android:textAlignment="textStart"
android:textAllCaps="false"
android:textColor="@color/text_color_v3"
android:textSize="12sp"
tools:ignore="RtlSymmetry" />
</LinearLayout>
<com.google.android.material.switchmaterial.SwitchMaterial
@ -470,6 +495,12 @@
android:contentDescription="@string/GENERAL_TODO" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/holo_gray_light"/>
<LinearLayout
android:id="@+id/pOption7"
android:layout_width="match_parent"
@ -487,34 +518,18 @@
<Button
android:layout_width="wrap_content"
android:layout_height="20dp"
android:layout_marginTop="8dp"
android:layout_marginTop="15dp"
android:alpha="0.7"
android:background="@android:color/transparent"
android:clickable="false"
android:padding="0dp"
android:paddingStart="15dp"
android:text="@string/SETTING_SEARCH_BING"
android:text="@string/SETTING_SEARCH_SUGGESTIONS"
android:textAlignment="textStart"
android:textAllCaps="false"
android:textColor="@color/blue_dark"
android:textSize="15sp"
tools:ignore="RtlSymmetry" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="2dp"
android:alpha="0.7"
android:background="@android:color/transparent"
android:clickable="false"
android:padding="0dp"
android:paddingStart="15dp"
android:text="@string/SETTING_SEARCH_BING"
android:textAlignment="textStart"
android:textAllCaps="false"
android:textColor="@color/text_color_v3"
android:textSize="12sp"
tools:ignore="RtlSymmetry" />
</LinearLayout>
<com.google.android.material.switchmaterial.SwitchMaterial
@ -527,6 +542,11 @@
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/holo_gray_light"/>
</LinearLayout>
</ScrollView>

View File

@ -42,6 +42,8 @@
<string name="SETTING_SEARCH_GOOGLE" translatable="false">Google</string>
<string name="SETTING_SEARCH_AMAZON" translatable="false">Bing</string>
<string name="SETTING_SEARCH_BING" translatable="false">Wikipedia</string>
<string name="SETTING_SEARCH_HISTORY" translatable="false">Show search history</string>
<string name="SETTING_SEARCH_SUGGESTIONS" translatable="false">Show search suggestions</string>
<!-- Alerts -->
<string name="ALERT_CREATE_BOOKMARK" translatable="false">Bookmark Website</string>