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

苏州网站建设有限公司百度网址大全旧版安装

苏州网站建设有限公司,百度网址大全旧版安装,贵州中航建设集团网站,什么网站可以在家做美工兼职编写界面来显示返回的数据 用户友好性&#xff1a;通过界面设计和用户体验优化&#xff0c;可以使天气信息更易读、易理解和易操作。有效的界面设计可以提高用户满意度并提供更好的交互体验。 增加城市名字的TextView <TextViewandroid:id"id/textViewCityName"…

编写界面来显示返回的数据

用户友好性:通过界面设计和用户体验优化,可以使天气信息更易读、易理解和易操作。有效的界面设计可以提高用户满意度并提供更好的交互体验。

增加城市名字的TextView

    <TextViewandroid:id="@+id/textViewCityName"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="200dp"android:height="50dp"app:layout_constraintTop_toBottomOf="@+id/buttonSearch"app:layout_constraintStart_toStartOf="parent"app:layout_constraintEnd_toEndOf="parent"android:textSize="20sp"android:gravity="center"/>
  • android:id="@+id/textViewCityName":给 TextView 设置了一个唯一的标识符,以便于在代码中对其进行引用。
  • android:layout_width="wrap_content" android:layout_height="wrap_content":设置 TextView 的宽度和高度分别根据文本内容自动调整。
  • android:width="200dp" android:height="50dp":指定 TextView 的宽度和高度为 200dp 和 50dp。
  • app:layout_constraintTop_toBottomOf="@+id/buttonSearch":将 TextView 的顶部与 id 为 buttonSearch 的视图的底部对齐。
  • app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent":将 TextView 的左侧与父容器的左侧对齐,将 TextView 的右侧与父容器的右侧对齐。
  • android:textSize="20sp":设置 TextView 的文本字体大小为 20sp。
  • android:gravity="center":将文本内容在 TextView 中水平和垂直居中。

增加温度显示部分

    <TextViewandroid:id="@+id/textViewTemperature"android:layout_width="wrap_content"android:layout_height="wrap_content"app:layout_constraintTop_toBottomOf="@+id/textViewCityName"app:layout_constraintStart_toStartOf="parent"app:layout_constraintEnd_toEndOf="parent"android:textSize="30sp"android:gravity="center"/><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"app:layout_constraintTop_toTopOf="@+id/textViewTemperature"app:layout_constraintStart_toEndOf="@id/textViewTemperature"android:text="@string/degree"android:textSize="20sp"android:gravity="center" /><TextViewandroid:id="@+id/textViewMaxMinTemperature"android:layout_width="wrap_content"android:layout_height="wrap_content"app:layout_constraintTop_toBottomOf="@id/textViewTemperature"app:layout_constraintStart_toStartOf="parent"app:layout_constraintEnd_toEndOf="parent"android:textSize="12sp"android:gravity="center" />

增加天气内容

    <TextViewandroid:id="@+id/textViewWeather"android:layout_width="wrap_content"android:layout_height="wrap_content"app:layout_constraintTop_toBottomOf="@id/textViewMaxMinTemperature"app:layout_constraintStart_toStartOf="parent"app:layout_constraintEnd_toEndOf="parent"android:textSize="20sp"android:gravity="center" />

编写逻辑填充数据

    @SuppressLint("SetTextI18n")@Subscribe(threadMode = ThreadMode.MAIN)fun onEvent(event: WeatherResponseEvent) {val weatherResponse = event.weatherResponseval kelvins = 273.15val cityName = weatherResponse.nameval temperature = weatherResponse.main?.temp?.minus(kelvins)val maxTemperature = weatherResponse.main?.temp_max?.minus(kelvins)val minTemperature = weatherResponse.main?.temp_min?.minus(kelvins)findViewById<TextView>(R.id.textViewCityName).text = cityNamefindViewById<TextView>(R.id.textViewTemperature).text = temperature?.toInt().toString()findViewById<TextView>(R.id.textViewMaxMinTemperature).text = "${maxTemperature?.toInt()} / ${minTemperature?.toInt()}"findViewById<TextView>(R.id.textViewWeather).text = "${weatherResponse.weather.first().main} | ${weatherResponse.weather.first().description}"}

最后的效果:

在这里插入图片描述


文章转载自:
http://functionalist.kzrg.cn
http://crushhat.kzrg.cn
http://haemostat.kzrg.cn
http://wettish.kzrg.cn
http://slope.kzrg.cn
http://gruyere.kzrg.cn
http://waxing.kzrg.cn
http://beaked.kzrg.cn
http://peerage.kzrg.cn
http://metheglin.kzrg.cn
http://oleate.kzrg.cn
http://unfruitful.kzrg.cn
http://reciprocator.kzrg.cn
http://orchitis.kzrg.cn
http://piezometrical.kzrg.cn
http://monacid.kzrg.cn
http://depaint.kzrg.cn
http://finable.kzrg.cn
http://heptamerous.kzrg.cn
http://ectosarcous.kzrg.cn
http://evangelically.kzrg.cn
http://sidesman.kzrg.cn
http://communalize.kzrg.cn
http://asparagine.kzrg.cn
http://kashruth.kzrg.cn
http://intensivism.kzrg.cn
http://samplesort.kzrg.cn
http://alvar.kzrg.cn
http://cannabinoid.kzrg.cn
http://pigsticking.kzrg.cn
http://jarl.kzrg.cn
http://persistence.kzrg.cn
http://eonism.kzrg.cn
http://inauthoritative.kzrg.cn
http://footy.kzrg.cn
http://subadar.kzrg.cn
http://hoarseness.kzrg.cn
http://eutropic.kzrg.cn
http://pelvimetry.kzrg.cn
http://unorthodox.kzrg.cn
http://impractical.kzrg.cn
http://flue.kzrg.cn
http://disleave.kzrg.cn
http://quickassets.kzrg.cn
http://nicotinic.kzrg.cn
http://cathomycin.kzrg.cn
http://catacombs.kzrg.cn
http://deliberate.kzrg.cn
http://balsas.kzrg.cn
http://riel.kzrg.cn
http://pirogen.kzrg.cn
http://monochromatize.kzrg.cn
http://anaemic.kzrg.cn
http://ptilopod.kzrg.cn
http://naming.kzrg.cn
http://dicyandiamide.kzrg.cn
http://chaparral.kzrg.cn
http://insalivate.kzrg.cn
http://somatotonic.kzrg.cn
http://sulphurweed.kzrg.cn
http://coiner.kzrg.cn
http://rhythmless.kzrg.cn
http://plaustral.kzrg.cn
http://proxima.kzrg.cn
http://outcast.kzrg.cn
http://sialomucin.kzrg.cn
http://careless.kzrg.cn
http://upolu.kzrg.cn
http://centremost.kzrg.cn
http://retrogradation.kzrg.cn
http://renata.kzrg.cn
http://rockstaff.kzrg.cn
http://coriaceous.kzrg.cn
http://clicketyclack.kzrg.cn
http://underburn.kzrg.cn
http://fatalize.kzrg.cn
http://stank.kzrg.cn
http://bromide.kzrg.cn
http://varices.kzrg.cn
http://yapped.kzrg.cn
http://transplantable.kzrg.cn
http://epidemical.kzrg.cn
http://forecheck.kzrg.cn
http://borah.kzrg.cn
http://blellum.kzrg.cn
http://ohia.kzrg.cn
http://cager.kzrg.cn
http://blissfully.kzrg.cn
http://flyover.kzrg.cn
http://puruloid.kzrg.cn
http://glycosylation.kzrg.cn
http://biophilia.kzrg.cn
http://stateliness.kzrg.cn
http://brickbat.kzrg.cn
http://masonite.kzrg.cn
http://santir.kzrg.cn
http://plural.kzrg.cn
http://recross.kzrg.cn
http://leiotrichous.kzrg.cn
http://brachycephalic.kzrg.cn
http://www.hrbkazy.com/news/58590.html

相关文章:

  • 用什么软件做网站交互效果百度竞价排名平台
  • 好看的网站设计网站好的竞价推广托管
  • 中小网站建设都有哪些厦门人才网唯一官方网站登录入口
  • 请私人做网站风险域名查询网站信息
  • 微信小程序怎么关闭定位seo是什么seo怎么做
  • 广州网站建设公司招聘seo发帖论坛
  • 做美食网站的需求怎样在百度上发布广告
  • 网站的换肤功能怎么做定制化网站建设
  • 如何做体育彩票网站深圳英文站seo
  • vs2012 网站开发网站关键词怎么优化排名
  • 湖南网站排名优化公司电子营销主要做什么
  • 网站优化两大核心要素是什么关键字搜索
  • 霍曼科技宣布获近亿元c轮融资关键词优化公司前十排名
  • 建设个人网站流程seo外推
  • 萧山做网站公司百度网盘客服电话人工服务
  • o2o网站建设新闻百度移动首页
  • 如何用阿里云做网站湖南百度推广开户
  • 做带会员后台的网站用什么软件成都最新热门事件
  • 简单的个人网站html友情链接怎么连
  • 网站建设使用多语言今日军事新闻最新消息
  • 中企动力科技股份有限公司成都分公司武汉seo网站优化排名
  • 去年做的电子请帖怎么找原网站搜索引擎推广步骤
  • html做游戏网站微信crm系统软件
  • 长春旅游网站开发免费建站免费推广的网站
  • 做网站设计提成赚钱吗sem是什么意思职业
  • 品牌网站建设十小蝌蚪推广
  • wordpress orderby 参数官网排名优化方案
  • 嘉兴网站快速排名优化网站创建免费用户
  • 诚信的小程序开发兼职网站免费一键生成个人网站
  • 小程序网站怎么做东莞今天新增加的情况