因为java文件中没有写东西所以就不上传了,就只有一个xml的
这个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"
tools:context=".view.CommentsActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:orientation="horizontal">
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:hint="说说你的看法"
android:background="@drawable/comments_edit_bg" />
<Button
android:layout_width="65dp"
android:layout_height="match_parent"
android:background="@color/blue"
android:text="评论"
app:backgroundTint="@null" />
</LinearLayout>
<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:title="最新评论"
app:titleTextColor="@color/black" />
<TextView
android:id="@+id/txt_comments"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:gravity="center"
android:text="暂无评论!"
android:textColor="@color/black"
android:textSize="20sp" />
<ListView
android:id="@+id/list_comments"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
这个xml是列表新闻对应的布局(其实这两个除了tools不一样,其余都一样一样的):
<?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"
tools:context=".view.CommentsListActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:orientation="horizontal">
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:hint="说说你的看法"
android:background="@drawable/comments_edit_bg" />
<Button
android:layout_width="65dp"
android:layout_height="match_parent"
android:background="@color/blue"
android:text="评论"
app:backgroundTint="@null" />
</LinearLayout>
<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:title="最新评论"
app:titleTextColor="@color/black" />
<TextView
android:id="@+id/txt_comments"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:gravity="center"
android:text="暂无评论!"
android:textColor="@color/black"
android:textSize="20sp" />
<ListView
android:id="@+id/list_comments"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
因为刚开始写没几天,所以有好多还没写,正在奋笔疾书等之后写好了,在回来补吧!!!
|