This commit is contained in:
lunaticbum
2024-08-29 18:35:10 +09:00
parent 8f685f667b
commit 88dc8a3dc8
12 changed files with 982 additions and 192 deletions
+1 -1
View File
@@ -134,7 +134,7 @@
android:overScrollMode="never"
android:padding="20dp"
android:scrollbars="none"
app:layoutManager="LinearLayoutManager"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/summaryChoose"
+28 -12
View File
@@ -4,25 +4,41 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto">
<!--rasel.lunar.launcher.view.CircleImageView-->
<ImageView
<!--rasel.lunar.launcher.view.CircleImageView-->
<rasel.lunar.launcher.view.CircleImageView
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:id="@+id/circle_preview"
android:layout_width="40dp"
android:layout_height="40dp"/>
android:scaleType="fitCenter"
android:adjustViewBounds="true"
android:layout_width="90dp"
android:layout_height="90dp"/>
<com.google.android.material.textview.MaterialTextView
android:id="@+id/itemText"
<TextView
android:id="@+id/title"
android:layout_width="@dimen/zero"
android:layout_height="40dp"
android:padding="@dimen/twelve"
android:lines="3"
android:layout_height="30dp"
android:gravity="center_vertical|right"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toRightOf="@id/circle_preview"
app:layout_constraintRight_toRightOf="parent"/>
<TextView
android:id="@+id/desc"
android:layout_width="@dimen/zero"
android:layout_height="43dp"
android:gravity="center_vertical|right"
app:layout_constraintTop_toBottomOf="@id/title"
app:layout_constraintBottom_toTopOf="@id/date"
app:layout_constraintLeft_toRightOf="@id/circle_preview"
app:layout_constraintRight_toRightOf="parent"/>
<TextView
android:id="@+id/date"
android:layout_width="@dimen/zero"
android:layout_height="30dp"
android:gravity="center_vertical|right"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
app:layout_constraintLeft_toRightOf="@id/circle_preview"
app:layout_constraintRight_toRightOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>