-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #372 from enviroCar/fix/upload
Fix/upload
- Loading branch information
Showing
14 changed files
with
858 additions
and
583 deletions.
There are no files selected for viewing
114 changes: 57 additions & 57 deletions
114
org.envirocar.app/res/layout/fragment_tracklist_uploading_single_dialog.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,57 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (C) 2013 - 2019 the enviroCar community | ||
This file is part of the enviroCar app. | ||
The enviroCar app is free software: you can redistribute it and/or | ||
modify it under the terms of the GNU General Public License as published | ||
by the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
The enviroCar app 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 the enviroCar app. If not, see http://www.gnu.org/licenses/. | ||
--> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="horizontal" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
|
||
<LinearLayout | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical" | ||
android:layout_gravity="center" | ||
android:padding="@dimen/spacing_large" | ||
android:layout_weight="1"> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:gravity="left" | ||
android:layout_height="wrap_content" | ||
android:text="@string/track_list_upload_track_content"/> | ||
|
||
<TextView | ||
android:id="@+id/fragment_tracklist_uploading_single_dialog_trackname" | ||
android:layout_width="match_parent" | ||
android:padding="@dimen/spacing_medium" | ||
android:gravity="center" | ||
android:layout_height="wrap_content" | ||
android:textStyle="bold" | ||
android:text="Track"/> | ||
|
||
</LinearLayout> | ||
|
||
<ProgressBar | ||
android:layout_width="wrap_content" | ||
android:layout_gravity="center" | ||
android:layout_height="wrap_content"/> | ||
|
||
</LinearLayout> | ||
<?xml version="1.0" encoding="utf-8"?><!-- | ||
Copyright (C) 2013 - 2019 the enviroCar community | ||
This file is part of the enviroCar app. | ||
The enviroCar app is free software: you can redistribute it and/or | ||
modify it under the terms of the GNU General Public License as published | ||
by the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
The enviroCar app 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 the enviroCar app. If not, see http://www.gnu.org/licenses/. | ||
--> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:padding="24dp" | ||
android:orientation="horizontal"> | ||
|
||
<LinearLayout | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center" | ||
android:layout_weight="1" | ||
android:orientation="vertical"> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:gravity="left" | ||
android:text="@string/track_list_upload_track_content" /> | ||
|
||
<TextView | ||
android:id="@+id/fragment_tracklist_uploading_single_dialog_trackname" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:gravity="center" | ||
android:padding="@dimen/spacing_medium" | ||
android:text="Track" | ||
android:textStyle="bold" /> | ||
|
||
</LinearLayout> | ||
|
||
<ProgressBar | ||
android:layout_marginLeft="16dp" | ||
android:layout_width="40dp" | ||
android:layout_height="40dp" | ||
android:layout_gravity="center" /> | ||
|
||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.