mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
32 lines
1.3 KiB
XML
32 lines
1.3 KiB
XML
<!-- 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/. -->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView android:id="@+id/title"
|
|
style="@style/GeckoDialogTitle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="6dip"
|
|
android:paddingBottom="0dip"
|
|
android:paddingLeft="10dip"
|
|
android:paddingRight="10dip"/>
|
|
|
|
<TextView android:id="@+id/host"
|
|
style="@style/GeckoDialogTitle.SubTitle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="2dip"
|
|
android:paddingBottom="6dip"
|
|
android:paddingLeft="10dip"
|
|
android:paddingRight="10dip"
|
|
android:textSize="14sp"/>
|
|
|
|
</LinearLayout>
|