2024.5.11
第四十六天
所花时间:2小时
代码量:100+
博客量:1
了解到的知识点:大作业2
activity_main.xml
<?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" android:orientation="vertical" android:padding="16dp" tools:context=".MainActivity"> <EditText android:id="@+id/editTextPost" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="写下你的想法..." android:inputType="textMultiLine" android:minHeight="150dp" android:gravity="top" android:padding="8dp"/> <Button android:id="@+id/buttonSelectImages" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="选择图片" android:layout_marginTop="8dp"/> <androidx.recyclerview.widget.RecyclerView android:id="@+id/recyclerViewSelectedImages" android:layout_width="match_parent" android:layout_height="100dp" android:layout_marginTop="8dp"/> <Button android:id="@+id/buttonUploadPost" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="发帖" android:layout_marginTop="8dp"/> <androidx.recyclerview.widget.RecyclerView android:id="@+id/recyclerViewPosts" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:layout_marginTop="8dp"/> </LinearLayout>