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"