blob: 25a958bbb9eef38143d681b06b7a1b433c01cba0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent">
<LinearLayout android:id="@+id/hostList_main"
android:orientation="vertical"
android:layout_height="match_parent"
android:layout_width="match_parent">
<TextView android:id="@+id/hostList_greeting"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
<ListView android:id="@+id/hostList_chooser"
android:layout_height="match_parent"
android:layout_width="match_parent"/>
</LinearLayout>
<ProgressBar android:id="@+id/hostList_progress"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:visibility="gone"
style="@android:style/Widget.Holo.ProgressBar.Large"/>
</FrameLayout>
|