0

私はギャラリーで働いています。同じための私のレイアウトは次のとおりです。

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

<TextView
    android:id="@+id/mySelection"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#ff0000ff"
    android:textSize="20px"
    android:textStyle="bold" />

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="10dp"
    android:background="#fff785" >

    <Gallery
        android:id="@+id/myGallery"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"

        android:spacing="10dp" />
</LinearLayout>

</LinearLayout>

これで何が起こるか 得られたギャラリー

しかし、ギャラリービューがFacebookのように背景を超えて移動するようにしたいと思います。これが私が望むイメージです 期待される

それを達成するために私ができる修正を提案してください。

4

1 に答える 1

0

上記の質問に対する答えを見つけました。親レイアウトを相対として作成し、その中で、必要なものの背景を持つ線形レイアウトを追加しました。これで、Gallery を Linear Layout の上に配置しました。そして、自分が達成したいことを手に入れることができます。

レイアウト ファイル:

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

<TextView
    android:id="@+id/mySelection"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#ff0000ff"
    android:textSize="20sp"
    android:textStyle="bold" />

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_margin="10dp"
    android:background="#fff785"
    android:layout_below="@+id/mySelection" >


</LinearLayout>

<Gallery
        android:id="@+id/myGallery"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:overScrollMode="always"
        android:spacing="10dp" />
</RelativeLayout>
于 2013-03-02T08:07:59.693 に答える