Path: blob/v3_openjdk/app_pojavlauncher/src/main/res/layout/view_mod.xml
2130 views
<?xml version="1.0" encoding="utf-8"?>1<androidx.constraintlayout.widget.ConstraintLayout2xmlns:android="http://schemas.android.com/apk/res/android"3xmlns:app="http://schemas.android.com/apk/res-auto"4xmlns:tools="http://schemas.android.com/tools"5android:layout_width="match_parent"6android:layout_height="wrap_content"7android:background="@drawable/background_line"8android:paddingHorizontal="@dimen/_2sdp"9android:paddingVertical="@dimen/_2sdp"10android:layout_marginVertical="@dimen/padding_medium"11>1213<ImageView14android:id="@+id/mod_thumbnail_imageview"15android:layout_width="@dimen/_65sdp"16android:layout_height="@dimen/_65sdp"1718app:layout_constraintStart_toStartOf="parent"19app:layout_constraintTop_toTopOf="parent"2021tools:src="@mipmap/ic_launcher_foreground"22/>2324<ImageView25android:id="@+id/mod_source_imageview"26android:layout_width="@dimen/_13sdp"27android:layout_height="@dimen/_13sdp"28android:layout_marginTop="3dp"2930android:layout_marginEnd="3dp"31android:scaleType="centerCrop"32app:layout_constraintEnd_toEndOf="parent"33app:layout_constraintTop_toTopOf="parent"34tools:src="@mipmap/ic_launcher_foreground" />3536<TextView37android:id="@+id/mod_title_textview"38style="@style/TextAppearance.AppCompat.Body2"39android:layout_width="0dp"40android:layout_height="wrap_content"41android:maxLines="1"42android:layout_marginStart="@dimen/padding_moderate"43android:ellipsize="end"4445app:layout_constraintHorizontal_bias="0.0"46app:layout_constraintEnd_toStartOf="@+id/mod_source_imageview"47app:layout_constraintStart_toEndOf="@+id/mod_thumbnail_imageview"48app:layout_constraintTop_toTopOf="parent"49tools:text="Feed the beast - Reforged" />5051<TextView52android:id="@+id/mod_body_textview"53style="@style/TextAppearance.AppCompat.Body1"54android:layout_width="0dp"55android:layout_height="wrap_content"56android:layout_marginStart="@dimen/padding_medium"57android:layout_marginEnd="@dimen/padding_medium"58android:ellipsize="end"59android:maxLines="3"6061app:layout_constraintEnd_toEndOf="parent"62app:layout_constraintBottom_toBottomOf="parent"63app:layout_constraintStart_toStartOf="@+id/mod_title_textview"64app:layout_constraintTop_toBottomOf="@+id/mod_title_textview"65app:layout_constraintHorizontal_bias="0.0"66app:layout_constraintVertical_bias="0.0"67tools:text="Feed the beast - Reforged is a machine and magic focused modpack, with no respect for the minimum requirements of minecraft. Very long text" />686970<!--71When clicked for the first time, the view is extended with more information.72Inflating later is cheaper, hence the stub73-->74<ViewStub75android:id="@+id/mod_limited_state_stub"76android:layout_width="match_parent"77android:layout_height="wrap_content"78android:layout="@layout/view_mod_extended"79app:layout_constraintTop_toBottomOf="@id/mod_thumbnail_imageview"/>80818283</androidx.constraintlayout.widget.ConstraintLayout>8485