0

我有一个带有画廊的 android 应用程序。当应用程序在屏幕中间运行图像视图时,我想从屏幕左侧开始视图。

我尝试了所有布局参数,如填充、边距、重力和 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>

4

1 回答 1

0

1)你需要RelativeLayout作为父母。

2) 为您的图像视图设置属性

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

ps 显示布局的 xml 代码

于 2013-10-14T08:16:58.150 回答