2013-09-10 12:45:00 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-03-05 15:27:45 +03:00
|
|
|
<!--
|
|
|
|
ownCloud Android client application
|
|
|
|
|
|
|
|
Copyright (C) 2015 ownCloud Inc.
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License version 2,
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
2013-09-10 12:45:00 +04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/loadingLayout"
|
2013-09-18 20:13:24 +04:00
|
|
|
android:layout_width="match_parent"
|
2013-09-10 12:45:00 +04:00
|
|
|
android:layout_height="wrap_content"
|
2015-08-13 20:43:56 +03:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="@dimen/standard_padding">
|
2013-09-10 12:45:00 +04:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/loadingBar"
|
2015-08-13 20:43:56 +03:00
|
|
|
style="?android:attr/progressBarStyle"
|
2013-09-10 12:45:00 +04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-09-18 20:13:24 +04:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-08-13 20:43:56 +03:00
|
|
|
android:indeterminate="true"
|
|
|
|
android:indeterminateOnly="false"/>
|
2013-09-10 12:45:00 +04:00
|
|
|
|
|
|
|
<TextView
|
2013-09-18 20:13:24 +04:00
|
|
|
android:id="@+id/loadingText"
|
2013-09-10 12:45:00 +04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2015-08-13 20:43:56 +03:00
|
|
|
android:layout_marginLeft="@dimen/standard_margin"
|
2013-09-10 12:45:00 +04:00
|
|
|
android:text="TextView" />
|
|
|
|
|
|
|
|
</LinearLayout>
|