2014-06-03 08:26:14 +09:30
<?xml version="1.0" encoding="utf-8"?>
2015-06-02 22:33:53 +02:00
<!--
Copyright (C) 2015 Nico Alt, nicoalt@posteo.org
This program 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.
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-->
<LinearLayout xmlns:android= "http://schemas.android.com/apk/res/android"
2014-06-03 08:26:14 +09:30
xmlns:tools="http://schemas.android.com/tools"
2015-06-02 22:33:53 +02:00
android:layout_width="fill_parent"
android:layout_height="wrap_content"
2014-06-22 20:40:43 +09:30
android:orientation="vertical"
2015-06-02 22:33:53 +02:00
android:paddingBottom="8dp"
2014-06-22 20:40:43 +09:30
android:paddingLeft="5dp"
2015-06-02 22:33:53 +02:00
android:paddingRight="5dp"
android:paddingTop="4dp">
<TextView
android:id="@+id/summary"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
tools:text="Application manager" />
2014-06-03 08:26:14 +09:30
<TextView
2015-06-02 22:33:53 +02:00
android:id="@+id/appid"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
2014-06-03 08:26:14 +09:30
tools:text="org.fdroid.fdroid" />
2015-06-02 22:33:53 +02:00
<TextView
android:id="@+id/signature"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="12sp" />
<!-- android:visibility="gone" because not needed in app details imho (but maybe will get used in another place soon) -->
<TextView
android:id="@+id/categories"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
android:visibility="gone"
tools:text="System" />
<TextView
android:id="@+id/antifeatures"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="6sp"
android:textColor="#ff0000"
android:textStyle="bold"
2014-06-03 08:26:14 +09:30
tools:text="Feeds you too much chocolate" />
2015-06-02 22:33:53 +02:00
<LinearLayout
android:id="@+id/ll_description"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:orientation="vertical">
<TextView
android:id="@+id/description"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8sp"
android:singleLine="false"
android:textSize="13sp"
tools:text="Connects to F-Droid compatible repositories. The default repo is hosted at f-droid.org, which contains only bona fide FOSS.
2014-06-03 08:26:14 +09:30
Android is open in the sense that you are free to install apks from anywhere you wish, but there are many good reasons for using a client/repository setup:
* Be notified when updates are available
* Keep track of older and beta versions
* Filter apps that aren't compatible with the device
* Find apps via categories and searchable descriptions
* Access associated urls for donations, source code etc.
* Stay safe by checking repo index signatures and apk hashes
Changelog" />
2014-06-22 20:40:43 +09:30
2015-06-02 22:33:53 +02:00
<ImageView
android:id="@+id/view_more_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:contentDescription="@string/content_description_view_more"
android:src="@drawable/ic_expand_more_grey600"
tools:src="@drawable/ic_expand_more_grey600" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll_information"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:orientation="vertical">
<TextView
android:id="@+id/information"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8sp"
android:drawableRight="@drawable/ic_expand_more_grey600"
android:drawablePadding="4dp"
android:drawableEnd="@drawable/ic_expand_more_grey600"
android:singleLine="true"
android:text="@string/links"
android:textStyle="bold"
tools:text="@string/links"
tools:drawableRight="@drawable/ic_expand_more_grey600"/>
<LinearLayout
android:id="@+id/ll_information_content"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:visibility="gone"
android:orientation="vertical">
<TextView
android:id="@+id/source"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawableLeft="@drawable/ic_source_code"
android:drawablePadding="4dp"
android:drawableStart="@drawable/ic_source_code"
android:gravity="center_vertical"
android:text="@string/menu_source"
tools:text="@string/menu_source" />
<TextView
android:id="@+id/issues"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawableLeft="@drawable/ic_issues"
android:drawablePadding="4dp"
android:drawableStart="@drawable/ic_issues"
android:gravity="center_vertical"
android:paddingTop="4dp"
android:text="@string/menu_issues"
tools:text="@string/menu_issues" />
<TextView
android:id="@+id/website"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawableLeft="@drawable/ic_website"
android:drawablePadding="4dp"
android:drawableStart="@drawable/ic_website"
android:gravity="center_vertical"
android:paddingTop="4dp"
android:text="@string/menu_website"
tools:text="@string/menu_website" />
<TextView
android:id="@+id/donate"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawableLeft="@drawable/ic_donate"
android:drawablePadding="4dp"
android:drawableStart="@drawable/ic_donate"
android:gravity="center_vertical"
android:paddingTop="4dp"
android:text="@string/menu_donate"
tools:text="@string/menu_donate" />
<TextView
android:id="@+id/bitcoin"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawableLeft="@drawable/ic_bitcoin"
android:drawablePadding="4dp"
android:drawableStart="@drawable/ic_bitcoin"
android:gravity="center_vertical"
android:paddingTop="4dp"
android:text="@string/menu_bitcoin"
tools:text="@string/menu_bitcoin" />
<TextView
android:id="@+id/litecoin"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawableLeft="@drawable/ic_donate"
android:drawablePadding="4dp"
android:drawableStart="@drawable/ic_donate"
android:gravity="center_vertical"
android:paddingTop="4dp"
android:text="@string/menu_litecoin"
tools:text="@string/menu_litecoin" />
<TextView
android:id="@+id/dogecoin"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawableLeft="@drawable/ic_donate"
android:drawablePadding="4dp"
android:drawableStart="@drawable/ic_donate"
android:gravity="center_vertical"
android:paddingTop="4dp"
android:text="@string/menu_dogecoin"
tools:text="@string/menu_dogecoin" />
<TextView
android:id="@+id/flattr"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:drawableLeft="@drawable/ic_flattr"
android:drawablePadding="4dp"
android:drawableStart="@drawable/ic_flattr"
android:gravity="center_vertical"
android:paddingTop="4dp"
android:text="@string/menu_flattr"
tools:text="@string/menu_flattr" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/ll_permissions"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:orientation="vertical">
<TextView
android:id="@+id/permissions"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8sp"
android:drawablePadding="4dp"
android:drawableEnd="@drawable/ic_expand_more_grey600"
android:drawableRight="@drawable/ic_expand_more_grey600"
android:singleLine="true"
android:textStyle="bold"
tools:text="Permissions for version 1.0"
tools:drawableRight="@drawable/ic_expand_more_grey600"/>
<TextView
android:id="@+id/permissions_list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="false"
android:textSize="13sp"
tools:text=" * Full network access
2014-06-03 08:26:14 +09:30
* View network connections
* View Wi-Fi connections
* Connect and disconnect from Wi-Fi
* Pair with Bluetooth devices
* Run at startup
* Modify or delete the contents of your USB storage
* Control Near Field Communication
* Directly install apps
* Delete apps
* Full permission to all device features and storage
* Test access to protected storage" />
2015-06-02 22:33:53 +02:00
</LinearLayout>
2014-06-22 20:40:43 +09:30
</LinearLayout>