You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
3.8 KiB
91 lines
3.8 KiB
<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2011 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
style="@style/RootLayoutPadding"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/bt_progress_bar"
|
|
style="@android:style/Widget.DeviceDefault.ProgressBar.Horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="4dp"
|
|
android:indeterminate="true" />
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
style="?android:attr/listSeparatorTextViewStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/bt_sent_messages" />
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
<ListView
|
|
android:id="@+id/bt_sent_messages"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
<TextView
|
|
android:id="@+id/bt_empty_sent_messages"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:visibility="gone" />
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
style="?android:attr/listSeparatorTextViewStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/bt_received_messages" />
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
<ListView
|
|
android:id="@+id/bt_received_messages"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
<TextView
|
|
android:id="@+id/bt_empty_received_messages"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:visibility="gone" />
|
|
</FrameLayout>
|
|
|
|
<Button
|
|
android:id="@+id/bt_make_discoverable_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawableTop="@android:drawable/ic_menu_mylocation"
|
|
android:text="@string/bt_make_discoverable" />
|
|
|
|
<include layout="@layout/pass_fail_buttons" />
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
</LinearLayout>
|