无论分辨率如何,如何将ImageView设置在屏幕顶部?

时间:2019-02-05 02:59:19

标签: java android android-layout android-constraintlayout

因此,我正在尝试使图像与屏幕顶部对齐,并且ImageView和可以看到电池等的栏之间目前存在间隙。

它没有显示布局预览中的空白,但在我的手机上有显示。

enter image description here

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

3 个答案:

答案 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"

其他方法是使用LinearLayoutRelativeLayout作为父级布局