mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-29 04:55:23 +00:00
80 lines
3.5 KiB
XML
80 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginBottom="3dip"
|
|
android:layout_marginLeft="8dip"
|
|
android:layout_marginRight="8dip"
|
|
android:layout_marginTop="3dip"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
|
card_view:cardCornerRadius="2dp"
|
|
card_view:cardElevation="2dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
|
android:orientation="horizontal"
|
|
android:padding="8dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="4dip"
|
|
android:layout_marginRight="4dip"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="0dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:singleLine="false"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:textIsSelectable="false"/>
|
|
|
|
<TextView
|
|
android:id="@+id/version_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="4dip"
|
|
android:layout_marginRight="4dip"
|
|
android:gravity="end"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textColor="@android:color/tertiary_text_dark"
|
|
android:textIsSelectable="false"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textIsSelectable="false"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- FIXME-->
|
|
<ImageView
|
|
android:id="@+id/overflow"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:focusable="false"
|
|
android:gravity="center"
|
|
android:padding="3dp"
|
|
android:src="@drawable/ic_menu_overflow_material"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.CardView> |