mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.4 KiB
XML
62 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2012 Facebook
|
|
|
|
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"
|
|
android:id="@+id/friends_group"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:background="#FFF"
|
|
android:orientation="vertical">
|
|
|
|
<TextView android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
android:textColor="#000"
|
|
android:textSize="20sp"
|
|
android:text="@string/friends_using_rock_the_logic"/>
|
|
|
|
<FrameLayout android:id="@+id/friend_picker_fragment"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_weight="1"/>
|
|
|
|
<TextView android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
android:textColor="#000"
|
|
android:textSize="20sp"
|
|
android:text="@string/friend_activity"/>
|
|
|
|
<FrameLayout android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_weight="1">
|
|
|
|
<ListView android:id="@+id/friend_activity_list"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"/>
|
|
|
|
<ProgressBar android:id="@+id/friend_activity_progress_bar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:indeterminate="true"
|
|
style="@android:style/Widget.ProgressBar"
|
|
android:layout_centerInParent="true"
|
|
android:visibility="gone"/>
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|