我有一个包含FrameLayout和RelativeLayouts的片段布局的xml代码,无论如何我有一个在Android Studio设计中相对布局中可见的imageview,这意味着当我在那里检查我的设计时,一切都是好,但是,当我运行我的代码时,它是不可见的,我不知道为什么, 这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/view_profile"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.doyousonder.android.drawer.drawer_view_profile">
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="410dp"
android:layout_marginBottom="10dp">
<me.relex.circleindicator.CircleIndicator
android:id="@+id/indicator"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_alignParentTop="true" />
<RelativeLayout
android:id="@+id/UserDetailsLayout"
android:layout_width="match_parent"
android:layout_height="80dp"
android:background="@drawable/background_rounded_corners"
android:layout_below="@id/indicator"
android:layout_marginStart="10dp"
android:layout_marginEnd="10dp"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp">
<com.doyousonder.android.utils.OpenSansBTextView
android:id="@+id/UserDetails"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_marginStart="10dp"
android:gravity="start"
android:textSize="16sp"
android:textColor="@color/black"/>
<com.doyousonder.android.utils.OpenSansBTextView
android:id="@+id/Background"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/UserDetails"
android:layout_marginTop="15dp"
android:layout_marginStart="10dp"
android:gravity="start"
android:textSize="16sp"
android:textColor="@color/trolley_grey"/>
<com.doyousonder.android.utils.OpenSansBTextView
android:id="@+id/Education"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toEndOf="@id/UserDetails"
android:layout_marginTop="5dp"
android:layout_marginEnd="10dp"
android:layout_marginStart="240dp"
android:gravity="end"
android:textColor="@color/trolley_grey"
android:textSize="16sp"
android:visibility="gone"/>
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/editProfileGrey"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_toEndOf="@id/UserDetails"
android:layout_marginTop="15dp"
android:layout_marginEnd="10dp"
android:layout_marginStart="300dp"
android:gravity="end"
android:scaleType="centerCrop"
android:src="@drawable/edit_button"/>
</RelativeLayout>
<ImageView
android:id="@+id/arrowDown"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/UserDetailsLayout"
android:gravity="center"
android:layout_centerInParent="true"
android:src="@drawable/arrow_down" />
</RelativeLayout>
答案 0 :(得分:0)
在您的第一个相对布局中,尝试删除
android:layout_marginTop="410dp"
并添加此
android:layout_gravity="bottom"
原因:相对布局占用了图像视图的空间,因为您具有相对布局的硬编码layout_marginTop
属性