|
2 | 2 | <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
3 | 3 | android:layout_width="match_parent" |
4 | 4 | android:layout_height="match_parent" |
5 | | - xmlns:app="http://schemas.android.com/apk/res-auto" |
6 | | - android:background="@android:color/transparent"> |
| 5 | + android:background="@android:color/transparent" |
| 6 | + xmlns:app="http://schemas.android.com/apk/res-auto"> |
| 7 | + |
| 8 | + <LinearLayout |
| 9 | + android:id="@+id/fakeheader" |
| 10 | + android:layout_width="match_parent" |
| 11 | + android:layout_height="100dp" |
| 12 | + android:layout_alignParentTop="true" |
| 13 | + android:layout_centerHorizontal="true" |
| 14 | + android:background="#80000000" |
| 15 | + android:orientation="vertical" |
| 16 | + app:layout_constraintEnd_toEndOf="parent" |
| 17 | + app:layout_constraintStart_toStartOf="parent" |
| 18 | + app:layout_constraintTop_toTopOf="parent" > |
| 19 | + </LinearLayout> |
| 20 | + |
7 | 21 |
|
8 | 22 | <ImageView |
9 | 23 | android:id="@+id/announcementImage" |
10 | 24 | android:layout_width="100dp" |
11 | 25 | android:layout_height="100dp" |
12 | | - app:layout_constraintStart_toStartOf="parent" |
| 26 | + android:layout_marginTop="52dp" |
13 | 27 | app:layout_constraintEnd_toEndOf="parent" |
| 28 | + app:layout_constraintHorizontal_bias="0.498" |
| 29 | + app:layout_constraintStart_toStartOf="parent" |
14 | 30 | app:layout_constraintTop_toTopOf="parent" /> |
15 | 31 |
|
16 | 32 | <TextView |
|
0 commit comments