第二阶段冲刺7

朋友圈layout页面

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<!-- 顶部标题栏 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#3F51B5"
android:padding="10dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="我的朋友圈"
android:textColor="#FFFFFF"
android:textSize="18sp" />
</LinearLayout>

<!-- 朋友圈列表 -->
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />

<!-- 底部发布栏 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#F1F1F1"
android:padding="10dp">
<EditText
android:id="@+id/edit_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="说点什么..."
android:maxLines="3" />
<Button
android:id="@+id/publish_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="发布" />
</LinearLayout>

</LinearLayout>
posted @ 2024-06-02 20:31  vvvcutee  阅读(15)  评论(0)    收藏  举报