是否可以使用嵌套的LinearLayout放置类似的视图?黑色矩形将是一个图标,它将通知用户当前的天气(可能是晴天,下雨,多云等)java - 是否可以使用LinearLayouts在ImageView的左侧设置 View ?-LMLPHP

最佳答案

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

<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"/>

07-26 09:41