| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 | 2 |
| 3 <com.google.fletch.githubsample.CommitCardView | 3 <com.google.dartino.githubsample.CommitCardView |
| 4 xmlns:android="http://schemas.android.com/apk/res/android" | 4 xmlns:android="http://schemas.android.com/apk/res/android" |
| 5 xmlns:card_view="http://schemas.android.com/apk/res-auto" | 5 xmlns:card_view="http://schemas.android.com/apk/res-auto" |
| 6 android:id="@+id/card_view" | 6 android:id="@+id/card_view" |
| 7 android:layout_width="match_parent" | 7 android:layout_width="match_parent" |
| 8 android:layout_height="wrap_content" | 8 android:layout_height="wrap_content" |
| 9 android:layout_marginRight="10dp" | 9 android:layout_marginRight="10dp" |
| 10 android:layout_marginLeft="10dp" | 10 android:layout_marginLeft="10dp" |
| 11 android:layout_marginBottom="1dp" | 11 android:layout_marginBottom="1dp" |
| 12 android:layout_marginTop="1dp" | 12 android:layout_marginTop="1dp" |
| 13 android:onClick="showDetails" | 13 android:onClick="showDetails" |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 android:layout_height="wrap_content" | 57 android:layout_height="wrap_content" |
| 58 android:id="@+id/author" | 58 android:id="@+id/author" |
| 59 android:layout_toRightOf="@+id/avatar" | 59 android:layout_toRightOf="@+id/avatar" |
| 60 android:layout_below="@+id/title" | 60 android:layout_below="@+id/title" |
| 61 android:maxLines="1" | 61 android:maxLines="1" |
| 62 android:textAppearance="@android:style/TextAppearance.Material.B
ody1" | 62 android:textAppearance="@android:style/TextAppearance.Material.B
ody1" |
| 63 /> | 63 /> |
| 64 | 64 |
| 65 </RelativeLayout> | 65 </RelativeLayout> |
| 66 | 66 |
| 67 </com.google.fletch.githubsample.CommitCardView> | 67 </com.google.dartino.githubsample.CommitCardView> |
| 68 | 68 |
| OLD | NEW |