blob: 1d2459fed3f6a66d1afc21cf216314b5b98f1a0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/attribute_descriptions"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView android:id="@+id/attribute_descriptions_textview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:textSize="14dip"
android:textColor="?text_color"
android:textColorLink="?text_color_link"
android:linksClickable="true" />
</LinearLayout>
|