2025.5.7(周三)
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".Service.TipsManageActivity" android:orientation="vertical"> <RelativeLayout android:id="@+id/ll_content" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp"> <ImageView android:id="@+id/iv_content" android:layout_width="30dp" android:layout_height="30dp" android:layout_marginLeft="20dp" android:layout_centerVertical="true" android:background="@drawable/search" android:layout_alignLeft="@+id/et_content" /> <EditText android:id="@+id/et_content" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="10dp" android:layout_marginRight="50dp" android:background="@drawable/editview" android:hint="按content查找" android:gravity="center" android:layout_centerInParent="true"/> </RelativeLayout> <TextView android:id="@+id/tv_show" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@+id/ll_fun" android:layout_marginTop="30dp" android:layout_marginLeft="10dp" android:layout_marginRight="10dp"/> </LinearLayout>