30 июня, 2022

WeatherApp #8: WeatherModel, list_item.xml

WeatherModel data class WeatherModel( val city: String, val time: String, val condition: String, val currentTemp: String, val maxTemp: String, val minTemp: String, val imageUrl: String, val hours: String ) list_item.xml <?xml version=”1.0″ encoding=”utf-8″?><androidx.cardview.widget.CardView xmlns:android=”http://schemas.android.com/apk/res/android” xmlns:app=”http://schemas.android.com/apk/res-auto” xmlns:tools=”http://schemas.android.com/tools” android:layout_width=”match_parent” android:layout_height=”wrap_content” android:layout_marginTop=”3dp” android:backgroundTint=”@color/card_blue_bg” app:cardCornerRadius=”5dp” app:cardElevation=”0dp”> <androidx.constraintlayout.widget.ConstraintLayout android:layout_width=”match_parent” android:layout_height=”match_parent”> <TextView android:id=”@+id/tvDate” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:layout_marginStart=”10dp” android:layout_marginTop=”10dp” android:fontFamily=”@font/aubrey” android:text=”Lunes 22 /12/2022″ android:textSize=”16sp” app:layout_constraintStart_toStartOf=”parent” app:layout_constraintTop_toTopOf=”parent” /> <TextView android:id=”@+id/tvCondition” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:layout_marginTop=”5dp” android:layout_marginBottom=”5dp” android:fontFamily=”@font/aubrey” android:text=”Sunny” android:textColor=”@color/white” app:layout_constraintBottom_toBottomOf=”parent” app:layout_constraintStart_toStartOf=”@+id/tvDate”… Подробнее »WeatherApp #8: WeatherModel, list_item.xml