This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Properties, Files and Trackers in torrent's details * Added Swedish translation * Added all icon resolutions (mdpi, hdpi, xhdpi, xxhdpi)
- Loading branch information
Showing
19 changed files
with
1,287 additions
and
1,061 deletions.
There are no files selected for viewing
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
338 changes: 107 additions & 231 deletions
338
qBittorrentClient/res/layout-large/torrent_details.xml
Large diffs are not rendered by default.
Oops, something went wrong.
338 changes: 107 additions & 231 deletions
338
qBittorrentClient/res/layout-sw600dp/torrent_details.xml
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (c) 2014 Luis M. Gallardo D.. | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the GNU Public License v3.0 | ||
which accompanies this distribution, and is available at | ||
http://www.gnu.org/licenses/gpl.html | ||
Contributors: | ||
Luis M. Gallardo D. | ||
--> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="horizontal" > | ||
|
||
<LinearLayout | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:orientation="vertical" > | ||
|
||
<TextView | ||
android:id="@+id/file" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="file" | ||
android:textSize="15sp" | ||
/> | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="horizontal" > | ||
|
||
<TextView | ||
android:id="@+id/info" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="info" | ||
android:textSize="13sp" /> | ||
</LinearLayout> | ||
</LinearLayout> | ||
|
||
<LinearLayout | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical" > | ||
|
||
<TextView | ||
android:id="@+id/percentage" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:gravity="end" | ||
android:text="35%" | ||
android:textSize="15sp" | ||
android:textStyle="bold" /> | ||
|
||
<ProgressBar | ||
android:id="@+id/progressBar1" | ||
style="?android:attr/progressBarStyleHorizontal" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:gravity="start" | ||
android:indeterminate="false" | ||
android:max="100" | ||
android:progress="1" /> | ||
</LinearLayout> | ||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (c) 2014 Luis M. Gallardo D.. | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the GNU Public License v3.0 | ||
which accompanies this distribution, and is available at | ||
http://www.gnu.org/licenses/gpl.html | ||
Contributors: | ||
Luis M. Gallardo D. | ||
--> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="horizontal" | ||
android:id="@+id/property" > | ||
|
||
<TextView | ||
android:id="@+id/label" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:text="Label" | ||
android:textSize="15sp" /> | ||
|
||
<TextView | ||
android:id="@+id/value" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1" | ||
android:text="Value" | ||
android:textSize="15sp" /> | ||
|
||
</LinearLayout> |
Oops, something went wrong.