|
8 | 8 | android:layout_height="wrap_content"> |
9 | 9 |
|
10 | 10 | <android.support.constraint.ConstraintLayout |
11 | | - android:layout_width="wrap_content" |
| 11 | + android:layout_width="match_parent" |
12 | 12 | android:layout_height="wrap_content" |
13 | 13 | android:layout_margin="@dimen/material_8dp"> |
14 | 14 |
|
|
40 | 40 |
|
41 | 41 | <TextView |
42 | 42 | android:id="@+id/tv_movie_code" |
43 | | - android:layout_width="wrap_content" |
| 43 | + android:layout_width="0dp" |
44 | 44 | android:layout_height="wrap_content" |
45 | 45 | android:layout_alignBottom="@+id/tv_movie_date" |
46 | 46 | android:layout_alignParentLeft="true" |
|
50 | 50 | android:ellipsize="end" |
51 | 51 | android:maxLines="1" |
52 | 52 | android:layout_marginTop="@dimen/material_4dp" |
| 53 | + app:layout_constraintLeft_toLeftOf="parent" |
53 | 54 | app:layout_constraintTop_toBottomOf="@id/tv_movie_title" |
| 55 | + app:layout_constraintRight_toLeftOf="@+id/tv_movie_date" |
| 56 | + |
54 | 57 | android:textSize="12sp" |
55 | 58 | tools:text="abc123" /> |
56 | 59 |
|
57 | 60 | <TextView |
58 | 61 | android:id="@+id/tv_movie_date" |
59 | | - android:layout_width="wrap_content" |
| 62 | + android:layout_width="0dp" |
60 | 63 | android:layout_height="wrap_content" |
61 | 64 | android:layout_alignParentBottom="true" |
62 | 65 | android:layout_alignParentEnd="true" |
63 | 66 | android:layout_alignParentRight="true" |
64 | 67 | android:ellipsize="end" |
65 | 68 | android:maxLines="1" |
66 | 69 | android:textSize="@dimen/material_12sp" |
| 70 | + app:layout_constraintLeft_toRightOf="@id/tv_movie_code" |
67 | 71 | app:layout_constraintBaseline_toBaselineOf="@id/tv_movie_code" |
68 | 72 | app:layout_constraintRight_toRightOf="parent" |
69 | 73 | tools:text="2015/01/01" /> |
|
0 commit comments