summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/res
diff options
context:
space:
mode:
authormahdihijazi <mahdi.hijaz@hotmail.com>2018-10-27 16:37:34 +0200
committermahdihijazi <mahdi.hijaz@hotmail.com>2018-10-29 21:37:44 +0100
commit593b69728d7e7813a3e3bbd1bfea2f2f56f3a38e (patch)
tree4ff2f40ed603b683181c60cff19d55b0628e6072 /Source/Android/app/src/main/res
parent5e1a3f11a522a9363659578e3d4d120a7a984df4 (diff)
Android: Remove dead code and related lib <circleimageview>
Diffstat (limited to 'Source/Android/app/src/main/res')
-rw-r--r--Source/Android/app/src/main/res/layout/dialog_game_details.xml130
1 files changed, 0 insertions, 130 deletions
diff --git a/Source/Android/app/src/main/res/layout/dialog_game_details.xml b/Source/Android/app/src/main/res/layout/dialog_game_details.xml
deleted file mode 100644
index 61cc212f55..0000000000
--- a/Source/Android/app/src/main/res/layout/dialog_game_details.xml
+++ /dev/null
@@ -1,130 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout 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_height="match_parent"
- android:layout_width="match_parent"
- android:transitionName="card_game">
-
- <RelativeLayout
- android:layout_width="480dp"
- android:layout_height="match_parent">
-
- <de.hdodenhof.circleimageview.CircleImageView
- android:id="@+id/circle_banner"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="48dp"
- android:layout_height="48dp"
- android:layout_below="@+id/image_game_screen"
- android:layout_marginLeft="16dp"
- android:layout_marginTop="24dp"
- tools:src="@drawable/placeholder_banner"
- app:civ_border_color="?android:colorAccent"
- app:civ_border_width="2dp"/>
-
- <ImageView
- android:id="@+id/image_game_screen"
- android:layout_width="match_parent"
- android:layout_height="320dp"
- android:layout_alignParentEnd="true"
- android:layout_alignParentLeft="true"
- android:layout_alignParentRight="true"
- android:layout_alignParentStart="true"
- android:layout_alignParentTop="true"
- android:transitionName="image_game_screen"
- tools:scaleType="centerCrop"
- tools:src="@drawable/placeholder_screenshot"/>
-
- <TextView
- android:id="@+id/text_game_title"
- style="@android:style/TextAppearance.Material.Headline"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentEnd="true"
- android:layout_below="@+id/image_game_screen"
- android:layout_marginLeft="36dp"
- android:layout_marginRight="36dp"
- android:layout_marginTop="24dp"
- android:layout_toEndOf="@+id/circle_banner"
- android:ellipsize="end"
- tools:text="Rhythm Heaven Fever"/>
-
- <TextView
- android:id="@+id/text_description"
- style="@android:style/TextAppearance.Material.Caption"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignEnd="@+id/text_game_title"
- android:layout_alignStart="@+id/text_game_title"
- android:layout_below="@+id/text_game_title"
- android:layout_marginTop="8dp"
- tools:text="Zany rhythm action!"/>
-
- <View
- android:id="@+id/divider"
- android:layout_width="0dp"
- android:layout_height="1dp"
- android:layout_alignParentLeft="true"
- android:layout_alignParentRight="true"
- android:layout_below="@+id/text_description"
- android:layout_marginTop="16dp"
- android:background="#1F000000"/>
-
- <ImageView
- android:id="@+id/icon_country"
- android:layout_width="48dp"
- android:layout_height="48dp"
- android:layout_alignStart="@+id/circle_banner"
- android:layout_alignTop="@+id/divider"
- android:layout_marginTop="24dp"
- android:padding="6dp"
- android:src="@drawable/ic_country"/>
-
- <ImageView
- android:id="@+id/icon_company"
- android:layout_width="48dp"
- android:layout_height="48dp"
- android:layout_alignStart="@+id/icon_country"
- android:layout_below="@+id/icon_country"
- android:layout_marginTop="16dp"
- android:padding="6dp"
- android:src="@drawable/ic_company"
- android:layout_marginBottom="16dp"/>
-
- <TextView
- android:id="@+id/text_country"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignBottom="@+id/icon_country"
- android:layout_alignStart="@+id/text_description"
- android:layout_alignTop="@+id/icon_country"
- android:gravity="center_vertical"
- tools:text="United States"/>
-
- <TextView
- android:id="@+id/text_company"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignBottom="@+id/icon_company"
- android:layout_alignStart="@+id/text_country"
- android:layout_alignTop="@+id/icon_company"
- android:gravity="center_vertical"
- tools:text="Nintendo"/>
-
- <android.support.design.widget.FloatingActionButton
- android:id="@+id/button_launch"
- android:layout_width="56dp"
- android:layout_height="56dp"
- android:layout_alignBottom="@+id/image_game_screen"
- android:layout_alignEnd="@+id/text_game_title"
- android:layout_marginBottom="-28dp"
- android:src="@drawable/ic_play"
- android:stateListAnimator="@animator/button_elevation"
- app:rippleColor="?android:colorPrimaryDark"
- app:borderWidth="0dp"
- app:elevation="6dp"
- app:pressedTranslationZ="12dp"/>
-
- </RelativeLayout>
-
-</FrameLayout>