Created
September 6, 2014 17:49
-
-
Save ejcer/ba1a5b29d160bcb46a62 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" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:orientation="vertical" > | |
<CalendarView | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:id="@+id/calendarView" | |
android:layout_weight="1"/> | |
<TextView | |
android:id="@+id/calendarViewTitle" | |
android:layout_width="wrap_content" | |
android:layout_height="20dp" | |
android:layout_gravity="center_vertical" | |
android:text="Top Notes" > | |
</TextView> | |
<ListView | |
android:id="@+id/contributorsList" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:layout_gravity="bottom" /> | |
<Button | |
android:id="@+id/exploreNotesButton" | |
android:layout_width="match_parent" | |
android:layout_height="42dp" | |
android:background="@drawable/noteworthybutton" | |
android:paddingTop="10dp" | |
android:paddingLeft="20dp" | |
android:paddingRight="20dp" | |
android:text="Explore notes for 1 credit" /> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment