当前位置:   article > 正文

Android studio天气预报UI框架_android studio开发天气预报的代码

android studio开发天气预报的代码

天气预报免费API:t.weather.sojson.com/api/weather/city/所要查询的城市的id号,不知道可以上网查

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".MainActivity">
  8. <TextView
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:textSize="25sp"
  12. android:textColor="#00BCD4"
  13. android:id="@+id/one"
  14. app:layout_constraintLeft_toLeftOf="parent"
  15. app:layout_constraintRight_toRightOf="parent"
  16. app:layout_constraintTop_toTopOf="parent"
  17. android:layout_marginTop="5dp"
  18. android:text="天气预报"/>
  19. <TextView
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. app:layout_constraintLeft_toLeftOf="parent"
  23. app:layout_constraintTop_toBottomOf="@+id/one"
  24. app:layout_constraintRight_toLeftOf="parent"
  25. android:layout_marginTop="30dp"
  26. android:id="@+id/tow"
  27. android:textSize="20sp"
  28. android:textColor="#03A9F4" />
  29. </androidx.constraintlayout.widget.ConstraintLayout>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/590055
推荐阅读
相关标签
  

闽ICP备14008679号