是否可以使用LinearLayouts在ImageView的左侧设置视图?

时间:2019-05-29 12:07:17

标签: java android xml

是否可以使用嵌套的LinearLayout放置类似的视图?黑色矩形将是一个图标,它将通知用户当前的天气(可能是晴天,下雨,多云等)enter image description here

1 个答案:

答案 0 :(得分:0)

已解决,如果有人对代码感到好奇

<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="match_parent"
tools:context=".hourly_menu"
android:orientation="horizontal">

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="20°C"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="1111 HPA"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="11%"/>
</LinearLayout>

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="57dp"
    android:src="@drawable/day_clear_sky"/>