Last active
February 27, 2018 21:48
-
-
Save pawegio/09f37aef8911aa3995a5330768e50236 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:layout_margin="16dp" | |
android:orientation="vertical"> | |
<TextView | |
android:id="@+id/dateView" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:fontFamily="sans-serif-medium" | |
android:lines="1" | |
android:textColor="@android:color/black" | |
android:textSize="20sp" | |
tools:text="@tools:sample/date/ddmmyy" /> | |
<TextView | |
android:id="@+id/remainingTimeView" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:fontFamily="sans-serif-light" | |
android:lines="1" | |
tools:text="Remaining: 2 d 1 h 23 min 5 s" /> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment