第七周(1) 后台代码编写、客户端具体功能实现与界面优化

本文介绍了在Android应用中实现评论功能的过程,包括界面设计与内部逻辑实现,并分享了具体的XML布局代码及Java业务逻辑代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

引言

在这半周的工作中,我们小组仍然主要进行后台客户端的代码编写工作以及界面的优化,在这里,我对自己主要从事的工作,即查看评论功能,做一个重点的介绍。

一、界面编写

在之前的界面设计中,已经完成了关于我们界面的设计。该界面比较简单,在最外层使用一个纵向的LinearLayout,内层嵌套一个ListView显示列表即可,具体代码如下所示:

<?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">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@color/white"
        android:padding="0dp">

        <ImageButton
            android:layout_width="?attr/actionBarSize"
            android:layout_height="?attr/actionBarSize"
            android:layout_alignParentLeft="true"
            android:background="@drawable/toolbar_back_bg"
            android:onClick="CommentBack"
            android:src="?attr/homeAsUpIndicator" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="评论"
            android:textColor="@color/black"
            android:textSize="19sp" />
    </RelativeLayout>

    <ListView
        android:id="@+id/comment_lv"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

根据该代码生成的预览效果如下所示,可以看到是符合预期的。
这里写图片描述

二、内部逻辑实现

功能十分简单,只需要从后台获取评论,然后加载到ListView中显示即可。
代码如下:

/**
 * 评论界面
 */
public class CommentActivity extends BaseActivity {

    private ListView comment_lv;
    private ArrayList<SuperViseBriefBean> SuperViseBriefList;
    private CommentListAdapter adapter;

    @Override
    public int getLayoutId() {
        return R.layout.activity_comment;
    }

    @Override
    public void afterCreate(Bundle savedInstanceState) {
        comment_lv = (ListView) findViewById(R.id.comment_lv);

        Intent intent = getIntent();
        SuperViseBriefList = (ArrayList<SuperViseBriefBean>) intent.getExtras().get("briefBean");
        adapter = new CommentListAdapter(this, SuperViseBriefList);
        comment_lv.setAdapter(adapter);
    }

    public void CommentBack(View view) {
        CommentActivity.this.finish();
    }
}

功能完成之后,我进行了白盒测试。因为代码比较简单的缘故,测试没有发现问题,顺利通过。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值