最近参加了一个小比赛,选了天气预报APP这个题目,最初选择它,是想练练网络数据获取和数据解析方面的知识,后来发现倒是学到了不少界面的东西。下面我来一步步讲解一下我是怎么完成的吧~
首先,天气预报最直观的部分应该就是天气显示界面了,这里,我想做成可以有上下滑动的效果的界面,因此我使用了RecyclerView控件,它的使用方式为:
1.首先在自己的项目中添加依赖(Android Studio)
file–>project structure–>找到相应的项目–>dependencies–>”+”–>找到recyclerview–>点击OK即可。
2.创建xml布局 layout_main.xml,在布局中使用RecyclerView控件即可。
layout_main.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0000">
</FrameLayout>
3.设置好了布局后,下面就可以去MainActivity.java文件中去操作它了。
//1. 获取控件
RecyclerView mRecyclerView = view.findViewById(R.id.recyclerView);
//2. 设置控件中item的排列方向
LinearLayoutManager layoutManager = new LinearLayoutManager(MainActivity.this);
//设置为垂直排列,即上下排列
layoutManager.setOrientation(OrientationHelper.VERTICAL);
4.获取了recyclerview之后,我们需要知道,我们之所以选择一个可滑动的控件,就是想让它能够完成滑动效果,因此在该控件内,我又写了两个布局来填充该控件。分别是content_weather_info.xml和content_life_info.xml
content_weather_info.xml
<?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