87 lines
3.2 KiB
XML
87 lines
3.2 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipChildren="false"
|
|
android:clipToPadding="false"
|
|
android:minHeight="?attr/listPreferredItemHeight"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="8dp"
|
|
android:paddingVertical="8dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:baselineAligned="false">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginEnd="4dp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/txtStatus"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<TextView
|
|
android:id="@+id/txtVersion"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:textIsSelectable="false" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="4dp"
|
|
android:layout_weight="1"
|
|
android:gravity="end"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/txtRelType"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAllCaps="true"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textIsSelectable="false"
|
|
android:textStyle="italic" />
|
|
|
|
<TextView
|
|
android:id="@+id/txtUploadDate"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textColor="?android:attr/textColorTertiary"
|
|
android:textIsSelectable="false"
|
|
android:textStyle="italic" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<org.meowcat.edxposed.manager.widget.DownloadView
|
|
android:id="@+id/downloadView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipChildren="false" />
|
|
|
|
<TextView
|
|
android:id="@+id/txtChangesTitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:text="@string/changes"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/txtChanges"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
</LinearLayout> |