我有一个Imageview,并希望将其宽度设置为屏幕尺寸的50%。但是图像应放置在屏幕中间。这就是我所做的:
<LinearLayout
android:id="@+id/logoView"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:orientation="horizontal"
app:layout_constraintTop_toBottomOf="@id/title">
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"/>
<ImageView
android:id="@+id/logo"
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
app:srcCompat="@drawable/app_logo_login" />
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
由于layout_weight
,图像的宽度很完美。我的问题是,图像的高度太大了,要理解我的意思,请看这张图片:
由于某种原因,图片的高度没有降低,即使我看到它已经缩放,它仍然具有原始高度。如何解决?
答案 0 :(得分:2)
使用约束布局和指导线
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintEnd_toStartOf="@+id/guideline2"
app:layout_constraintStart_toStartOf="@+id/guideline"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_launcher_background" />
<android.support.constraint.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.25" />
<android.support.constraint.Guideline
android:id="@+id/guideline2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.75" />
答案 1 :(得分:1)
我建议使用ConstraintLayout
而不是LinearLayout
。
<android.support.constraint.ConstraintLayout 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">
<ImageView
android:id="@+id/logo"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/app_logo_login" />
</android.support.constraint.ConstraintLayout>
答案 2 :(得分:0)
请找到以下一个: 使父级线性布局在水平方向上匹配宽度和高度的父级
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2"/>
<ImageView
android:id="@+id/logo"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
app:srcCompat="@drawable/splash" />
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2"/>