Index: samples/github/android/GithubSample/app/src/main/res/layout/details_view.xml |
diff --git a/samples/github/android/GithubSample/app/src/main/res/layout/details_view.xml b/samples/github/android/GithubSample/app/src/main/res/layout/details_view.xml |
deleted file mode 100644 |
index 64478e64240de8c11b9486fc59ddb6183d057a94..0000000000000000000000000000000000000000 |
--- a/samples/github/android/GithubSample/app/src/main/res/layout/details_view.xml |
+++ /dev/null |
@@ -1,69 +0,0 @@ |
-<?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="match_parent"> |
- |
- <android.support.v7.widget.CardView |
- android:id="@+id/details_card_view" |
- xmlns:card_view="http://schemas.android.com/apk/res-auto" |
- android:layout_width="match_parent" |
- android:layout_height="match_parent" |
- card_view:cardUseCompatPadding="true" |
- card_view:cardCornerRadius="1dp" |
- card_view:cardElevation="5dp" |
- android:transitionName="transition_card" |
- > |
- |
- <RelativeLayout |
- android:layout_width="match_parent" |
- android:layout_height="wrap_content" |
- android:padding="10dp" |
- > |
- |
- <ImageView |
- android:layout_width="60dp" |
- android:layout_height="60dp" |
- android:id="@+id/details_avatar" |
- android:layout_alignParentLeft="true" |
- android:layout_alignParentTop="true" |
- android:layout_marginRight="20dp" |
- android:transitionName="transition_image" |
- /> |
- |
- <TextView |
- android:layout_width="wrap_content" |
- android:layout_height="wrap_content" |
- android:id="@+id/details_title" |
- android:layout_toRightOf="@+id/details_avatar" |
- android:layout_alignParentTop="true" |
- android:textSize="20sp" |
- android:maxLines="1" |
- android:textAppearance="@android:style/TextAppearance.Material.Title" |
- android:transitionName="transition_title" |
- /> |
- |
- <TextView |
- android:layout_width="wrap_content" |
- android:layout_height="wrap_content" |
- android:id="@+id/details_author" |
- android:layout_toRightOf="@+id/details_avatar" |
- android:layout_below="@+id/details_title" |
- android:maxLines="1" |
- android:textAppearance="@android:style/TextAppearance.Material.Body1" |
- android:transitionName="transition_author" |
- /> |
- |
- <TextView |
- android:layout_width="wrap_content" |
- android:layout_height="wrap_content" |
- android:id="@+id/details" |
- android:textAppearance="@android:style/TextAppearance.Material.Body1" |
- android:layout_below="@+id/details_avatar" |
- android:layout_margin="10dp" |
- /> |
- </RelativeLayout> |
- |
- </android.support.v7.widget.CardView> |
- |
-</LinearLayout> |