Skip to content

Instantly share code, notes, and snippets.

@ejcer
Created September 6, 2014 17:49
Show Gist options
  • Save ejcer/ba1a5b29d160bcb46a62 to your computer and use it in GitHub Desktop.
Save ejcer/ba1a5b29d160bcb46a62 to your computer and use it in GitHub Desktop.
<?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