Android在约束布局图像视图中设置最小高度

时间:2018-04-16 13:26:07

标签: android android-studio android-constraintlayout

如何在约束布局中为“图像”视图设置最小高度 我正在使用滑动来从网址加载图像,并需要为Imageview设置最小高度以显示占位符

      <android.support.v4.widget.NestedScrollView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fillViewport="true"
                app:layout_behavior="@string/appbar_scrolling_view_behavior">

                <android.support.constraint.ConstraintLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">


                    <ImageView
                        android:id="@+id/banner_image_view"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:adjustViewBounds="true"
                        app:layout_constraintTop_toTopOf="parent" />

                    <LinearLayout
                        android:id="@+id/linearLayout"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:orientation="vertical"
                        app:layout_constraintTop_toBottomOf="@+id/banner_image_view">
                        ....
                    </LinearLayout>
               </android.support.constraint.ConstraintLayout>
     </android.support.v4.widget.NestedScrollView>

0 个答案:

没有答案