diff options
Diffstat (limited to 'res')
| -rw-r--r-- | res/layout/char_details.xml | 2 | ||||
| -rw-r--r-- | res/layout/range_details.xml | 19 | 
2 files changed, 20 insertions, 1 deletions
| diff --git a/res/layout/char_details.xml b/res/layout/char_details.xml index 57a6b35..1828d2d 100644 --- a/res/layout/char_details.xml +++ b/res/layout/char_details.xml @@ -10,7 +10,7 @@      android:layout_height="wrap_content"      android:textSize="20sp"      android:textColor="#ff000000" /> -  <TextView android:id="@+id/utf8Label" +  <TextView android:id="@+id/encodingLabel"      android:layout_width="fill_parent"      android:layout_height="wrap_content"      android:textSize="16sp" diff --git a/res/layout/range_details.xml b/res/layout/range_details.xml new file mode 100644 index 0000000..1d82698 --- /dev/null +++ b/res/layout/range_details.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" +    android:layout_width="fill_parent" +    android:layout_height="fill_parent" +    android:padding="10dp" +    android:orientation="vertical" +    android:background="#f0c4c4e0"> +  <TextView android:id="@+id/rangeDescrLabel" +    android:layout_width="fill_parent" +    android:layout_height="wrap_content" +    android:textSize="20sp" +    android:textStyle="bold" +    android:textColor="#ff000000" /> +  <TextView android:id="@+id/rangeRangeLabel" +    android:layout_width="fill_parent" +    android:layout_height="wrap_content" +    android:textSize="16sp" +    android:textColor="#ff404040" /> +</LinearLayout> | 
