设置相对布局以适合ImageView

时间:2017-11-08 15:33:46

标签: android

我有一个xml文件如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/relLayout1">

            <!-- toolbar -->
            <include layout="@layout/snippet_top_sharetoolbar"/>

        </RelativeLayout>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/relLayout1"
            android:id="@+id/relLayout2"
            android:background="@drawable/grey_border_bottom">

            <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/relLayout3img">

                    <ImageView
                        android:layout_width="100dp"
                        android:layout_height="100dp"
                        android:id="@+id/imageShare"
                        android:src="@drawable/white_bg"
                        android:scaleType="fitXY"
                        android:layout_centerVertical="true"
                        android:layout_centerHorizontal="true"
                        android:layout_marginLeft="40dp"
                        android:layout_marginBottom="40dp"
                        android:background="@drawable/border_for_image"/>

            </RelativeLayout>

         </RelativeLayout>
    </RelativeLayout>
</ScrollView>

我需要使用布局relLayout3img来完全匹配imageview,而不是相反,因为我拍摄了相关布局的截图并下载了它。

我搜索了任何解决方案但找不到任何解决方案。任何帮助将不胜感激。

0 个答案:

没有答案