<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:title="@string/app_name">
<PreferenceCategory
android:title="@string/category_name">
<Preference android:key="app_name"
android:persistent="false"
android:title="@string/app_name"
/>
</PreferenceCategory>
</PreferenceScreen>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="25dip" android:gravity="center_vertical" android:paddingLeft="5dip" android:background="#323331"> <ImageView android:layout_width="wrap_content" android:layout_height="fill_parent" android:src="@android:drawable/ic_menu_info_details"/> <TextView android:textStyle="bold" android:id="@android:id/title" android:layout_width="wrap_content" android:layout_height="fill_parent" android:text="test" android:gravity="center" android:textColor="#FF0000" /> </LinearLayout>