1<?xml version="1.0" encoding="utf-8"?>
2
3<LinearLayout
4    xmlns:android="http://schemas.android.com/apk/res/android"
5    android:layout_width="wrap_content"
6    android:layout_height="wrap_content"
7    >
8  <TextView
9      android:id="@+id/black_text_view_hint"
10      android:layout_width="wrap_content"
11      android:layout_height="wrap_content"
12      android:hint="Black Hint"
13      android:textColorHint="#000000"
14      />
15
16  <TextView
17      android:id="@+id/white_text_view_hint"
18      android:layout_width="wrap_content"
19      android:layout_height="wrap_content"
20      android:hint="White Hint"
21      android:textColorHint="@android:color/white"
22      />
23
24  <TextView
25      android:id="@+id/grey_text_view_hint"
26      android:layout_width="wrap_content"
27      android:layout_height="wrap_content"
28      android:hint="Grey Hint"
29      android:textColorHint="@color/grey42"
30      />
31</LinearLayout>
32