Skip to content

Instantly share code, notes, and snippets.

@YashdalfTheGray
Last active May 15, 2016 22:44
Show Gist options
  • Save YashdalfTheGray/bfce9c82c409845db104c3e3652201a4 to your computer and use it in GitHub Desktop.
Save YashdalfTheGray/bfce9c82c409845db104c3e3652201a4 to your computer and use it in GitHub Desktop.
Weekly repeat indicator
<string name="reminder_schedule_monday">Mon</string>
<string name="reminder_schedule_tuesday">Tue</string>
<string name="reminder_schedule_wednesday">Wed</string>
<string name="reminder_schedule_thursday">Thu</string>
<string name="reminder_schedule_friday">Fri</string>
<string name="reminder_schedule_saturday">Sat</string>
<string name="reminder_schedule_sunday">Sun</string>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="fill_horizontal"
android:paddingBottom="16dp">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/reminder_schedule_monday"
android:textColor="@color/colorPrimaryText"
android:text="@string/reminder_schedule_monday"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/reminder_schedule_tuesday"
android:textColor="@color/colorPrimaryText"
android:text="@string/reminder_schedule_tuesday"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/reminder_schedule_wednesday"
android:textColor="@color/colorPrimaryText"
android:text="@string/reminder_schedule_wednesday"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/reminder_schedule_thursday"
android:textColor="@color/colorPrimaryText"
android:text="@string/reminder_schedule_thursday"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/reminder_schedule_friday"
android:textColor="@color/colorPrimaryText"
android:text="@string/reminder_schedule_friday"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/reminder_schedule_saturday"
android:textColor="@color/colorPrimaryText"
android:text="@string/reminder_schedule_saturday"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/reminder_schedule_sunday"
android:textColor="@color/colorPrimaryText"
android:text="@string/reminder_schedule_sunday"/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment