|
@@ -27,28 +27,59 @@
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
- <FrameLayout
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="@dimen/d_46dp">
|
|
|
|
|
|
<com.guadou.lib_baselib.font_text_view.TextViewMedium
|
|
|
+ android:id="@+id/tv_title"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_gravity="center"
|
|
|
android:text="首页"
|
|
|
android:textColor="@color/black"
|
|
|
- android:textSize="@dimen/d_18sp" />
|
|
|
+ android:textSize="@dimen/d_18sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
- <com.guadou.lib_baselib.font_text_view.TextViewMedium
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_notify_icon"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="right|center_vertical"
|
|
|
+ android:layout_gravity="center"
|
|
|
android:layout_marginRight="@dimen/d_15dp"
|
|
|
- android:text="全部已读"
|
|
|
- android:textColor="@color/profile_red"
|
|
|
- android:textSize="@dimen/d_16sp" />
|
|
|
+ android:contentDescription="通知列表"
|
|
|
+ android:src="@drawable/main_title_notification_icon"
|
|
|
+ android:visibility="visible"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
- </FrameLayout>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_badge_num"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="start"
|
|
|
+ android:layout_marginTop="@dimen/d_5dp"
|
|
|
+ android:background="@drawable/badge_red"
|
|
|
+ android:maxLength="2"
|
|
|
+ android:paddingLeft="@dimen/d_4dp"
|
|
|
+ android:paddingTop="@dimen/d_1dp"
|
|
|
+ android:paddingRight="@dimen/d_4dp"
|
|
|
+ android:paddingBottom="@dimen/d_1dp"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/d_10sp"
|
|
|
+ android:visibility="gone"
|
|
|
+ app:layout_constraintLeft_toLeftOf="@id/iv_notify_icon"
|
|
|
+ app:layout_constraintRight_toLeftOf="@id/iv_notify_icon"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ tools:text="99"
|
|
|
+ tools:visibility="visible" />
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
<View
|
|
|
android:layout_width="match_parent"
|