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/. -->
|
|
|
|
|
2014-05-08 00:05:50 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="@dimen/remote_tab_child_row_height"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingRight="4dp" >
|
|
|
|
|
|
|
|
<org.mozilla.gecko.widget.AllCapsTextView android:id="@+id/client"
|
|
|
|
style="@style/TabRowTextAppearance"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="@dimen/remote_tab_group_row_height"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<TextView android:id="@+id/last_synced"
|
|
|
|
style="@style/TabRowTextAppearance.Url"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxLength="1024"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|