Android 端天气预报APP的实现(一)天气显示界面之上下滑动

本文介绍了如何在Android APP中创建一个可上下滑动的天气显示界面,通过使用RecyclerView控件,详细阐述了从添加依赖到设置适配器的步骤,实现了天气和生活指数信息的滑动展示。
摘要由CSDN通过智能技术生成

最近参加了一个小比赛,选了天气预报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
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值