4c3b7cbe08
1) Change all instances which use concatenation to build strings with variables in them to use string formatting instead. 2) Extract all string literals from layouts and menus into strings.xml 3) Extract all string literals from code into strings.xml
26 lines
975 B
XML
26 lines
975 B
XML
<?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="wrap_content"
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
|
android:paddingTop="1dip"
|
|
android:paddingBottom="1dip"
|
|
android:paddingLeft="9dip"
|
|
android:paddingRight="9dip">
|
|
|
|
<ImageView android:id="@+id/icon"
|
|
android:paddingRight="9dip"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<TextView android:id="@+id/text1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:textColor="@drawable/text_color_black"
|
|
android:gravity="center_vertical"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:layout_gravity="center_horizontal|center_vertical" />
|
|
</LinearLayout>
|
|
|