| Index: samples/github/android/GithubSample/app/src/main/res/layout/cards_layout.xml
|
| diff --git a/samples/github/android/GithubSample/app/src/main/res/layout/cards_layout.xml b/samples/github/android/GithubSample/app/src/main/res/layout/cards_layout.xml
|
| deleted file mode 100644
|
| index e0b30079b62c2a39c10fca7d2df7ffa5bd69e4a4..0000000000000000000000000000000000000000
|
| --- a/samples/github/android/GithubSample/app/src/main/res/layout/cards_layout.xml
|
| +++ /dev/null
|
| @@ -1,68 +0,0 @@
|
| -<?xml version="1.0" encoding="utf-8"?>
|
| -
|
| -<com.google.dartino.githubsample.CommitCardView
|
| - xmlns:android="http://schemas.android.com/apk/res/android"
|
| - xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
| - android:id="@+id/card_view"
|
| - android:layout_width="match_parent"
|
| - android:layout_height="wrap_content"
|
| - android:layout_marginRight="10dp"
|
| - android:layout_marginLeft="10dp"
|
| - android:layout_marginBottom="1dp"
|
| - android:layout_marginTop="1dp"
|
| - android:onClick="showDetails"
|
| - card_view:cardUseCompatPadding="true"
|
| - card_view:cardCornerRadius="1dp"
|
| - card_view:cardElevation="3dp"
|
| - android:transitionName="transition_card"
|
| - android:foreground="?android:attr/selectableItemBackground"
|
| - android:clickable="true"
|
| - >
|
| -
|
| - <ProgressBar
|
| - android:id="@+id/card_loading"
|
| - android:layout_height="70dp"
|
| - android:layout_width="match_parent"
|
| - android:padding="20dp"/>
|
| -
|
| - <RelativeLayout
|
| - android:id="@+id/card_loaded"
|
| - 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/avatar"
|
| - android:layout_alignParentLeft="true"
|
| - android:layout_alignParentTop="true"
|
| - android:layout_marginRight="20dp"
|
| - />
|
| -
|
| - <TextView
|
| - android:layout_width="wrap_content"
|
| - android:layout_height="wrap_content"
|
| - android:id="@+id/title"
|
| - android:layout_toRightOf="@+id/avatar"
|
| - android:layout_alignParentTop="true"
|
| - android:textSize="20sp"
|
| - android:maxLines="1"
|
| - android:textAppearance="@android:style/TextAppearance.Material.Title"
|
| - />
|
| -
|
| - <TextView
|
| - android:layout_width="wrap_content"
|
| - android:layout_height="wrap_content"
|
| - android:id="@+id/author"
|
| - android:layout_toRightOf="@+id/avatar"
|
| - android:layout_below="@+id/title"
|
| - android:maxLines="1"
|
| - android:textAppearance="@android:style/TextAppearance.Material.Body1"
|
| - />
|
| -
|
| - </RelativeLayout>
|
| -
|
| -</com.google.dartino.githubsample.CommitCardView>
|
| -
|
|
|