exodus-privacy-android-app/app/src/main/res/layout/app_item.xml

67 lines
2.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:gravity="center">
<RelativeLayout
android:id="@+id/base_info"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:id="@+id/app_logo"
android:contentDescription="@string/app_logo"
android:layout_width="50dp"
android:layout_height="50dp" />
<LinearLayout
android:id="@+id/layout_infos"
android:orientation="vertical"
android:layout_centerInParent="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/app_permission_nb"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/app_tracker_nb"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<TextView
android:layout_centerInParent="true"
android:layout_toRightOf="@+id/app_logo"
android:layout_toEndOf="@+id/app_logo"
android:layout_toLeftOf="@+id/layout_infos"
android:layout_toStartOf="@+id/layout_infos"
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
android:id="@+id/app_name"
android:text="testesteteteteteteteteteteeetetet"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
<TextView
android:layout_below="@+id/base_info"
android:id="@+id/other_version"
android:text="@string/tested"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:layout_below="@+id/other_version"
android:id="@+id/analysed"
android:text="@string/analysed"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:layout_below="@+id/analysed"
android:layout_alignParentBottom="true"
style="?android:attr/listSeparatorTextViewStyle"
android:layout_width="match_parent"
android:layout_height="10dp" />
</RelativeLayout>