安卓第二次实验报告:activity的点击跳转事件

本文详细介绍了在Android Studio中如何通过RecyclerView实现新闻列表的界面设计,包括recycler_view2.xml的布局、News实体类、MyRecyclerAdapter的适配以及DiscoverFragment中数据初始化和生命周期管理。
摘要由CSDN通过智能技术生成

1.实验环境:

Windows系统,Android Studio

2.界面分析:

这是我们的开始界面,我们选择在“发现”的地方放置新闻,做一个activity的跳转。

这是我们点击“发现”中的新闻后的跳转界面,是用另一个activity实现的。

 3.界面的代码实现:

 3.1 recycler_view2.xml文件(“发现”界面的recyclerview设计)

<?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"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="160dp"
        android:layout_height="90dp"
        app:srcCompat="@drawable/news" />

    <TextView
        android:id="@+id/textView7"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="美国四部门发气候变化报告:各国竞争将加剧,太阳能地球工程成热门"
        android:textSize="20dp" />
</LinearLayout>

我们的recyclerview设置的内容是一个图片展示新闻的图片,然后旁边一个textview显示新闻的主题,这里设置的图片和文字是默认的,我们会在初始化数据的时候进行数据的修改。


3.2 五个新闻的activity.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=".News1">

    <TextView
        android:id="@+id/textView3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值