gecko/embedding/android/resources/layout/awesomebar_row.xml

35 lines
1.5 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2011-10-11 00:09:03 -07:00
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2011-10-13 12:22:26 -07:00
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#fefefe"
android:padding="6dip">
2011-10-13 12:22:26 -07:00
<ImageView android:id="@+id/favicon"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="6dip"/>
2011-10-11 00:09:03 -07:00
<TextView android:id="@+id/title"
2011-10-13 12:22:26 -07:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMediumInverse"
android:textColor="?android:attr/textColorPrimaryInverse"
android:layout_toRightOf="@id/favicon"
android:singleLine="true"
android:ellipsize="middle"/>
2011-10-11 00:09:03 -07:00
<TextView android:id="@+id/url"
2011-10-13 12:22:26 -07:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmallInverse"
android:textColor="?android:attr/textColorSecondaryInverse"
android:layout_marginTop="2dip"
android:layout_below="@id/title"
android:layout_alignLeft="@id/title"
android:includeFontPadding="false"
android:singleLine="true"
android:ellipsize="middle"/>
2011-10-11 00:09:03 -07:00
</RelativeLayout>