1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<RelativeLayout xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ xmlns : app =" http://schemas.android.com/apk/res-auto"
3
4
android : id =" @+id/list_info_item"
4
5
android : layout_width =" match_parent"
5
6
android : layout_height =" wrap_content"
14
15
android : layout_marginStart =" 24dp"
15
16
android : contentDescription =" @string/credits_title" />
16
17
17
- <LinearLayout
18
+ <androidx .constraintlayout.widget.ConstraintLayout
18
19
android : layout_width =" match_parent"
19
20
android : layout_height =" wrap_content"
20
21
android : layout_centerVertical =" true"
29
30
style =" @style/TextAppearance.Material3.TitleMedium"
30
31
android : layout_width =" wrap_content"
31
32
android : layout_height =" wrap_content"
32
- android : textColor =" @color/text_color_primary" />
33
+ android : textColor =" @color/text_color_primary"
34
+ app : layout_constraintBottom_toTopOf =" @+id/desc"
35
+ app : layout_constraintStart_toStartOf =" parent"
36
+ app : layout_constraintTop_toTopOf =" parent" />
33
37
34
38
<TextView
35
39
android : id =" @+id/desc"
40
+ android : visibility =" visible"
36
41
style =" @style/TextAppearance.Material3.BodyMedium"
37
42
android : layout_width =" wrap_content"
38
43
android : layout_height =" wrap_content"
39
- android : textColor =" @color/text_color_secondary" />
44
+ android : textColor =" @color/text_color_secondary"
45
+ android : layout_marginTop =" 6dp"
46
+ app : layout_constraintStart_toStartOf =" parent"
47
+ app : layout_constraintTop_toBottomOf =" @+id/title" />
40
48
41
- </LinearLayout >
49
+ </androidx .constraintlayout.widget.ConstraintLayout >
42
50
</RelativeLayout >
0 commit comments