You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
11 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:gravity="center_vertical"
|
||
|
android:background="?android:attr/activatedBackgroundIndicator"
|
||
|
android:orientation="horizontal" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/favicon1"
|
||
|
android:layout_width="22dp"
|
||
|
android:layout_height="22dp"
|
||
|
android:contentDescription="Favicon"
|
||
|
android:gravity="center_vertical"
|
||
|
android:layout_marginLeft="3dp"
|
||
|
android:layout_marginRight="2dp"
|
||
|
android:paddingLeft="2dp"
|
||
|
android:paddingRight="2dp" >
|
||
|
</ImageView>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/text1"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center_vertical"
|
||
|
android:maxLines="1"
|
||
|
android:minHeight="?android:attr/listPreferredItemHeightSmall"
|
||
|
android:paddingRight="4dp"
|
||
|
android:textAppearance="?android:attr/textAppearanceListItemSmall"
|
||
|
android:textColor="#656565" />
|
||
|
|
||
|
</LinearLayout>
|