因此,我正在尝试使图像与屏幕顶部对齐,并且ImageView
和可以看到电池等的栏之间目前存在间隙。
它没有显示布局预览中的空白,但在我的手机上有显示。
<?xml version="1.0" encoding="utf-8"?>
<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"
android:background="@color/Background"
android:orientation="vertical"
tools:context=".SomeActivity"
android:gravity="center">
<ImageView
android:id="@+id/imageView2"
android:layout_width="match_parent"
android:layout_height="350dp"
android:src="@drawable/man"
tools:layout_editor_absoluteX="0dp" />
答案 0 :(得分:0)
我正在使用它。您可以尝试一下。
<ScrollView 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"
android:background="@color/colorPrimary"
android:fitsSystemWindows="true">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_margin="16dp"
android:src="@drawable/logo" />
</ScrollView>
答案 1 :(得分:0)
要在父顶部设置任何视图以使用此属性
app:layout_constraintTop_toTopOf =“ @ + id / parent_id”
这是我的代码
<?xml version="1.0" encoding="utf-8"?>
<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"
android:background="#fff"
android:orientation="vertical"
android:id="@+id/main">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:srcCompat="@drawable/demo_img_4"
app:layout_constraintTop_toTopOf="@+id/main" />
另一种使用线性布局的代码
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="350dp"
app:srcCompat="@drawable/demo_img_4" />
</LinearLayout>
注意:尝试其他图片
我希望它对您有用
答案 2 :(得分:0)
您需要做的就是在imageView
app:layout_constraintTop_toTopOf="parent"
其他方法是使用LinearLayout
或RelativeLayout
作为父级布局