lmw
2024-09-25 92778728b83ce1a34ba21bcdb061afdeca16cce5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="120dp"
    android:layout_height="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="@drawable/bg_green_line">
    <TextView
        android:id="@+id/tv_photo"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:text="发布图片"
        app:layout_constraintTop_toTopOf="parent"
        android:textSize="15sp"
        android:background="@color/colorPrimary"
        android:singleLine="true"
        android:textColor="@color/white"
        android:gravity="center" />
 
    <TextView
        android:id="@+id/tv_video"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:text="发布视频"
        app:layout_constraintTop_toBottomOf="@id/tv_photo"
        android:textSize="15sp"
        android:textColor="@color/colorPrimary"
        android:gravity="center"/>
</androidx.constraintlayout.widget.ConstraintLayout>