gecko/mobile/android/base/resources/layout/abouthome_last_tabs_row.xml

41 lines
2.5 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="@dimen/abouthome_rowitem_height"
android:gravity="left|center_vertical"
style="@style/AboutHome.RowItem">
<org.mozilla.gecko.widget.FaviconView android:id="@+id/last_tab_favicon"
android:layout_width="@dimen/favicon_bg"
android:layout_height="@dimen/favicon_bg"
android:layout_marginBottom="6dip"
android:layout_marginLeft="@dimen/abouthome_rowitem_left_padding"
android:layout_centerVertical="true"
android:minWidth="@dimen/favicon_bg"
android:minHeight="@dimen/favicon_bg"
android:background="@drawable/favicon"/>
<org.mozilla.gecko.GeckoTextView android:id="@+id/last_tab_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/last_tab_favicon"
android:layout_marginTop="2dip"
android:layout_marginLeft="12dip"
android:layout_marginRight="12dip"
style="@style/AboutHome.LastTabRow.Title"/>
<org.mozilla.gecko.GeckoTextView android:id="@+id/last_tab_url"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="12dip"
android:layout_marginRight="12dip"
android:layout_toRightOf="@id/last_tab_favicon"
android:layout_below="@id/last_tab_title"
style="@style/AboutHome.LastTabRow.Url"/>
</RelativeLayout>