这是我迄今为止尝试的布局,没有任何成功
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/white">
<LinearLayout
android:id="@+id/lltest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_centerHorizontal="true">
<ImageView
android:id="@+id/inside_imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:layout_marginBottom="5dip"
android:src="@drawable/frame"/>
</LinearLayout>
<ImageView
android:id="@+id/outside_imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@id/inside_imageview"
android:scaleType="fitXY"/>
</RelativeLayout>
我真正想要的是将我的outside_imageview置于inside_imageview之上,具有确切的高度和宽度......如何通过布局来实现?
答案 0 :(得分:38)
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/white" >
<ImageView
android:id="@+id/inside_imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:layout_marginTop="5dip"
android:src="@drawable/frame" />
<ImageView
android:id="@+id/outside_imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@id/inside_imageview"
android:layout_alignBottom="@id/inside_imageview"
android:layout_alignLeft="@id/inside_imageview"
android:layout_alignRight="@id/inside_imageview"
android:scaleType="fitXY" />
</RelativeLayout>
layout_align[Top|Bottom|Left|Right]
中的RelativeLayout
属性用于根据边距内各自的x和y值对齐视图。第二个ImageView
现在将根据边距与第一个ImageView
的顶部,底部,左侧和右侧对齐。对齐中忽略填充。
答案 1 :(得分:18)
FrameLayout
就是您所需要的。您也可以简单地合并FrameLayout
的父布局。
请查看 Android开发者博客:http://android-developers.blogspot.it/2009/03/android-layout-tricks-3-optimize-by.html
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center">
<ImageView
android:id="@+id/outside_imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitXY"/>
<ImageView
android:id="@+id/inside_imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:layout_marginBottom="5dip"
android:src="@drawable/frame" />
</merge>
答案 2 :(得分:6)
您应该尝试FrameLayout
。在FrameLayout内部,每个孩子都在彼此之上。
答案 3 :(得分:2)
我试过这种方式,它对我有用,希望有所帮助
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="5dip">
<ImageView
android:id="@+id/image_first"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/imga"/>
<ImageView
android:id="@+id/imageview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/image"/>
</FrameLayout>
答案 4 :(得分:1)
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/_15dp">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/_10dp"
android:layout_marginTop="@dimen/_50dp"
android:background="@drawable/white_background"
/>
<ImageView
android:layout_width="@dimen/_100dp"
android:layout_height="@dimen/_100dp"
android:background="@drawable/my_credit"
android:layout_marginTop="@dimen/_5dp"
android:layout_centerHorizontal="true"
/>
</RelativeLayout>
答案 5 :(得分:0)
我仅使用海拔高度... 0 =地板或地下室...大声笑1 =地板2 10 =地板10顶部
<ImageView
android:id="@+id/blog_user_image_gp"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_marginTop="70dp"
android:src="@drawable/avatar"
android:scaleType="fitXY"
android:foregroundGravity="center"
android:elevation="10dp"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/users_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="80dp"
android:elevation="1dp"
android:scrollbars="vertical" />
答案 6 :(得分:-1)
只需添加翻译z,它就会位于顶部,确保翻译z大于您想要的视图。回复晚了非常抱歉。