当前位置: 首页 > news >正文

网站登录页面模板下载做网站背景

网站登录页面模板下载,做网站背景,免费自助建站平台系统,网站系统模版要使用RecyclerView显示天气预报的内容 先在grandle里添加recyclerView的引用 implementation androidx.recyclerview:recyclerview:1.3.1创建一个RecyclerView控件#xff1a;在布局文件中#xff0c;添加一个RecyclerView控件#xff0c;用于显示天气预报的列表。 这是一…要使用RecyclerView显示天气预报的内容 先在grandle里添加recyclerView的引用 implementation androidx.recyclerview:recyclerview:1.3.1创建一个RecyclerView控件在布局文件中添加一个RecyclerView控件用于显示天气预报的列表。 这是一个包含三个TextView的LinearLayout布局用于显示天气相关的数据。每个TextView都有一个唯一的id可用于在代码中找到和操作它们。 TextView的id为weatherData用于显示天气数据。 TextView的id为weatherDescription用于显示天气描述。 TextView的id为weatherTemperature用于显示天气温度。 LinearLayout的属性设置如下 android:layout_width和android:layout_height分别设置为match_parent和wrap_content使得布局宽度填充父容器高度根据内容自适应。 android:layout_marginLeft和android:layout_marginRight设置为10dp给左右两侧的边距留出10dp的空间。这样可以让布局与父容器的边缘有一个间隔。 每个TextView的属性设置如下 android:layout_width和android:layout_height都设置为wrap_content使得TextView的大小根据内容自适应。 android:layout_weight设置为1表示每个TextView在水平方向上平均分配可用的空间。 ?xml version1.0 encodingutf-8? LinearLayout xmlns:androidhttp://schemas.android.com/apk/res/androidandroid:layout_widthmatch_parentandroid:layout_heightwrap_contentandroid:layout_marginLeft10dpandroid:layout_marginRight10dpTextViewandroid:idid/weatherDataandroid:layout_widthwrap_contentandroid:layout_heightwrap_contentandroid:layout_weight1/TextViewandroid:idid/weatherDescriptionandroid:layout_widthwrap_contentandroid:layout_heightwrap_contentandroid:layout_weight1/TextViewandroid:idid/weatherTemperatureandroid:layout_widthwrap_contentandroid:layout_heightwrap_contentandroid:layout_weight1//LinearLayout创建RecyclerView的适配器创建一个继承自RecyclerView.Adapter的适配器类用于将数据绑定到RecyclerView的子项上。 package com.example.myweather.openWeatherMapimport android.annotation.SuppressLint import android.view.LayoutInflater import android.view.View import android.view.ViewGroup import android.widget.TextView import androidx.recyclerview.widget.RecyclerView import com.example.myweather.R import java.text.SimpleDateFormat import java.util.*class ForecastAdapter(private val forecastList: ListForecastCell) :RecyclerView.AdapterForecastAdapter.ViewHolder() {inner class ViewHolder(view: View) : RecyclerView.ViewHolder(view) {val weatherData: TextView view.findViewById(R.id.weatherData)val weatherDescription: TextView view.findViewById(R.id.weatherDescription)val weatherTemperature: TextView view.findViewById(R.id.weatherTemperature)}override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {val view LayoutInflater.from(parent.context).inflate(R.layout.weather_item, parent, false)return ViewHolder(view)}SuppressLint(SetTextI18n)override fun onBindViewHolder(holder: ViewHolder, position: Int) {val kelvins 273.15val simpleDateFormat SimpleDateFormat(MM-dd HH:mm, Locale.ENGLISH)val forecastCell forecastList[position]holder.weatherData.text simpleDateFormat.format(forecastCell.dt*1000L)holder.weatherDescription.text forecastCell.weather.first().descriptionholder.weatherTemperature.text ${forecastCell.main.maxTemperature.minus(kelvins).toInt()}/ ${forecastCell.main.minTemperature.minus(kelvins).toInt()}}override fun getItemCount() forecastList.size }设置RecyclerView的布局管理器和适配器 private lateinit var forecastRecyclerView: RecyclerViewoverride fun onCreate(savedInstanceState: Bundle?) {//...forecastRecyclerView findViewById(R.id.forecastRecyclerView)forecastRecyclerView.layoutManager LinearLayoutManager(this)//... }private fun updateForecastList(forecastResponse: ForecastResponse) {val adapter ForecastAdapter(forecastResponse.forecastCellList!!)forecastRecyclerView.adapter adapter}在上面的代码中forecastCellList是包含天气预报数据的List集合。 提供数据并更新适配器在您的Activity或Fragment中提供天气预报数据并通知适配器更新数据。 当eventbus收到ForecastReponseEvent后会调用updateForecastList()去更新ForecastRecyclerView的adapter。 private fun updateForecastList(forecastResponse: ForecastResponse) {val adapter ForecastAdapter(forecastResponse.forecastCellList!!)forecastRecyclerView.adapter adapter}
http://www.zqtcl.cn/news/823146/

相关文章:

  • 建网站 广州网站改版 理论
  • 门户网站简称昆明本地网站
  • 网站定位的核心意义离婚协议书模板 完整版
  • 网站首页改版方案长图制作网站
  • 网站的栏目有什么名字保定网络公司网站
  • 南京建设机械网站建设银行网站解除绑定
  • 厚街公司网站建设wordpress发邮件更新
  • wap网站制作网络设计公司经营范围
  • 织梦网站被做跳转还被删除文件第三方电子商务平台有哪些
  • 财经网站源码 织梦游戏ui培训
  • 石家庄站布局图网站建设公司怎么
  • 电商网站建设选迅法网东莞系统网站建设
  • 网站栏目 英文wordpress 情侣
  • 济南市历下区建设局官方网站wordpress 作者页
  • 武进建设银行网站首页大型网站建设哪家快
  • 做网站用vs怎么自己写代码做网站
  • 网站建设产品需求文档技术培训学校机构
  • 简单个人网站源码石景山网站seo优化排名
  • 用花生做网站房地产电子商务的网站建设
  • 宁波网站建设团队sem竞价托管多少钱
  • 工艺品东莞网站建设营销助手app
  • 怎么添加网站 多少钱wordpress 在线教育模板
  • 做鞋的垂直网站小型购物网站模板
  • 石家庄公司网站建设网站建设技术难点
  • 阿里云能放企业网站吗建设网站的建设费用包括什么
  • 网站对公司的作用是什么初学者学做网站用什么软件
  • 网站的建设模式高校后勤网站建设要求
  • 网站的导航栏怎么做的网站seo诊断报告怎么写
  • elementui 做的网站写网站编程需要什么
  • 一站式网站建设顾问小程序小游戏开发