| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- 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="274dp"
- android:background="@color/CFFFFFF"
- android:orientation="vertical"
- android:paddingTop="@dimen/main_contents_weather_margin_top">
- <LinearLayout
- android:id="@+id/layout_container_weather"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingStart="30dp">
- <ImageView
- android:id="@+id/icon_weather"
- android:layout_width="47dp"
- android:layout_height="47dp"
- app:srcCompat="@drawable/ic_icon_weather_sunny_copy"/>
- <TextView
- android:id="@+id/text_weather"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:lineSpacingExtra="7sp"
- android:paddingStart="20dp"
- android:text="@string/weather_sunny"
- android:textColor="@color/C333333"
- android:textSize="18sp"
- android:textStyle="bold"
- tools:text="지금 서울은\n맑음입니다"/>
- <ImageView
- android:id="@+id/icon_dot"
- android:layout_width="7dp"
- android:layout_height="10dp"
- android:layout_gravity="bottom"
- android:paddingBottom="3dp"
- app:srcCompat="@drawable/ic_icon_main_dot_copy"/>
- </LinearLayout>
- </LinearLayout>
|