使用固定的页脚android放置imageview

时间:2017-06-08 18:40:57

标签: android imageview footer

我想放置图像大约全高和固定页脚。 我试过这段代码。 使用图库

动态更新图像
<RelativeLayout 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"
    tools:context="com.aaaa.com.EditView">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        tools:layout_editor_absoluteY="0dp"
        tools:layout_editor_absoluteX="8dp"
        android:layout_alignParentBottom="true"
        android:id="@+id/footerEdit"
        android:weightSum="2">

        <Button
            android:id="@+id/addBackground"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/icon_content" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/takePhoto"
            android:background="@drawable/icon_camera"/>

    </LinearLayout>

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

我想缩放整个屏幕的图像但是留下页脚区域 请指导

1 个答案:

答案 0 :(得分:1)

当您使用相对布局时,您仍然可以管理页眉和页脚(最后为您)指示布局之间的顺序和顺序。 对于您的主要内容区域,请添加:

android:layout_above="@id/lytFooter"

将叠放在页脚上 和

android:layout_below="@id/lytHeader"

将设置堆叠在标题下方。

对于您的主要内容区域,将height设置为match_parent。

希望它有所帮助。