2012-03-09 18:42:43 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-05-21 11:12:37 +00:00
|
|
|
<!-- 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/. -->
|
|
|
|
|
2013-01-10 21:06:32 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-05-08 00:05:50 +00:00
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:gravity="center_vertical"
|
2014-06-20 16:21:31 +00:00
|
|
|
android:layout_width="match_parent"
|
2013-01-10 21:06:32 +00:00
|
|
|
android:layout_height="@dimen/remote_tab_child_row_height"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingRight="4dp">
|
|
|
|
|
|
|
|
<TextView android:id="@+id/tab"
|
2014-05-08 00:05:50 +00:00
|
|
|
style="@style/TabRowTextAppearance"
|
2014-06-20 16:21:31 +00:00
|
|
|
android:layout_width="match_parent"
|
2013-01-10 21:06:32 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-05-08 00:05:50 +00:00
|
|
|
android:textSize="18sp" />
|
2013-01-10 21:06:32 +00:00
|
|
|
|
|
|
|
<TextView android:id="@+id/url"
|
2014-05-08 00:05:50 +00:00
|
|
|
style="@style/TabRowTextAppearance.Url"
|
2014-06-20 16:21:31 +00:00
|
|
|
android:layout_width="match_parent"
|
2013-01-10 21:06:32 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-05-08 00:05:50 +00:00
|
|
|
android:maxLength="1024"
|
|
|
|
android:textSize="14sp" />
|
2013-01-10 21:06:32 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|