-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug fix for crashing while opening pages and tab it was related to th…
…eme conflict
- Loading branch information
Showing
6 changed files
with
102 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,104 +1,112 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ScrollView | ||
<LinearLayout | ||
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_height="match_parent"> | ||
android:layout_height="match_parent" | ||
android:orientation="vertical"> | ||
|
||
<LinearLayout | ||
<androidx.appcompat.widget.Toolbar | ||
android:id="@+id/toolbar" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical" | ||
android:padding="16dp"> | ||
android:layout_height="?attr/actionBarSize" | ||
android:background="?attr/colorPrimary" | ||
android:elevation="4dp" | ||
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/> | ||
|
||
<androidx.appcompat.widget.Toolbar | ||
android:id="@+id/toolbar" | ||
android:layout_width="match_parent" | ||
android:layout_height="?attr/actionBarSize" | ||
android:background="?attr/colorPrimary" | ||
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/> | ||
|
||
<ImageView | ||
android:id="@+id/app_logo" | ||
android:layout_width="120dp" | ||
android:layout_height="120dp" | ||
android:layout_gravity="center" | ||
android:layout_marginTop="32dp" | ||
android:src="@mipmap/umoneylogo"/> | ||
<ScrollView | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
|
||
<TextView | ||
android:layout_width="wrap_content" | ||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center" | ||
android:layout_marginTop="16dp" | ||
android:text="UMoney" | ||
android:textSize="24sp" | ||
android:textStyle="bold"/> | ||
android:orientation="vertical" | ||
android:padding="16dp"> | ||
|
||
<TextView | ||
android:id="@+id/app_version" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center" | ||
android:layout_marginTop="8dp" | ||
android:text="Version 1.0.0"/> | ||
<ImageView | ||
android:id="@+id/app_logo" | ||
android:layout_width="120dp" | ||
android:layout_height="120dp" | ||
android:layout_gravity="center" | ||
android:layout_marginTop="32dp" | ||
android:src="@mipmap/umoneylogo"/> | ||
|
||
<com.google.android.material.card.MaterialCardView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="32dp" | ||
app:cardCornerRadius="8dp" | ||
app:cardElevation="4dp"> | ||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center" | ||
android:layout_marginTop="16dp" | ||
android:text="UMoney" | ||
android:textSize="24sp" | ||
android:textStyle="bold"/> | ||
|
||
<LinearLayout | ||
<TextView | ||
android:id="@+id/app_version" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center" | ||
android:layout_marginTop="8dp" | ||
android:text="Version 1.0.0"/> | ||
|
||
<com.google.android.material.card.MaterialCardView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical" | ||
android:padding="16dp"> | ||
android:layout_marginTop="32dp" | ||
app:cardCornerRadius="8dp" | ||
app:cardElevation="4dp"> | ||
|
||
<TextView | ||
android:layout_width="wrap_content" | ||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="About UMoney" | ||
android:textSize="18sp" | ||
android:textStyle="bold"/> | ||
android:orientation="vertical" | ||
android:padding="16dp"> | ||
|
||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="8dp" | ||
android:text="UMoney is your personal finance tracker that helps you manage your expenses and income. It automatically categorizes your transactions into needs, wants, and savings to help you maintain a healthy financial lifestyle."/> | ||
</LinearLayout> | ||
</com.google.android.material.card.MaterialCardView> | ||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="About UMoney" | ||
android:textSize="18sp" | ||
android:textStyle="bold"/> | ||
|
||
<com.google.android.material.card.MaterialCardView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="16dp" | ||
app:cardCornerRadius="8dp" | ||
app:cardElevation="4dp"> | ||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="8dp" | ||
android:text="UMoney is your personal finance tracker that helps you manage your expenses and income. It automatically categorizes your transactions into needs, wants, and savings to help you maintain a healthy financial lifestyle."/> | ||
</LinearLayout> | ||
</com.google.android.material.card.MaterialCardView> | ||
|
||
<LinearLayout | ||
<com.google.android.material.card.MaterialCardView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical" | ||
android:padding="16dp"> | ||
android:layout_marginTop="16dp" | ||
app:cardCornerRadius="8dp" | ||
app:cardElevation="4dp"> | ||
|
||
<TextView | ||
android:layout_width="wrap_content" | ||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="Contact Us" | ||
android:textSize="18sp" | ||
android:textStyle="bold"/> | ||
android:orientation="vertical" | ||
android:padding="16dp"> | ||
|
||
<TextView | ||
android:id="@+id/email_support" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="8dp" | ||
android:text="[email protected]" | ||
android:textColor="@color/design_default_color_primary"/> | ||
</LinearLayout> | ||
</com.google.android.material.card.MaterialCardView> | ||
</LinearLayout> | ||
</ScrollView> | ||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="Contact Us" | ||
android:textSize="18sp" | ||
android:textStyle="bold"/> | ||
|
||
<TextView | ||
android:id="@+id/email_support" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="8dp" | ||
android:text="[email protected]" | ||
android:textColor="@color/design_default_color_primary"/> | ||
</LinearLayout> | ||
</com.google.android.material.card.MaterialCardView> | ||
</LinearLayout> | ||
</ScrollView> | ||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters