在图库android中设置图像的位置

时间:2013-10-14 08:01:40

标签: android

我有一个Android应用程序,它有一个Gallery。当应用程序在屏幕中间运行图像视图时,我想从屏幕左侧开始查看。

我尝试了所有布局参数,如填充,边距,重力和setSpacing,所有这些都无法将图像的位置设置为线性布局的左上角。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="0dp"
android:orientation="vertical" >

<uk.co.senab.photoview.sample.HackyViewPager
    android:id="@+id/view_pager"
    android:layout_width="match_parent"
    android:layout_height="404dp"
    android:layout_weight="3" />

<RelativeLayout
    android:id="@+id/actionBar"
    android:layout_width="fill_parent"
    android:layout_height="50dp"
    android:orientation="horizontal" >

    <Gallery
        android:id="@+id/gallery1"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:layout_gravity="left|top"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true" />

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

1)您需要RelativeLayout为父母。

2)将属性设置为图像视图

android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"

P.S。显示布局的xml代码