如何获取重叠的图库项目?

时间:2011-10-26 20:59:42

标签: android

我有一个包含多个项目的图库,我正在尝试将它们定位,以便您可以看到下一个项目的边缘。很像这样:

http://imgur.com/mtQvX

关于我将如何进行定位的任何帮助?

1 个答案:

答案 0 :(得分:1)

这取决于你想要走多远。应该可以使用一个简单的ScrollView来添加一个自定义视图,该视图包含您链接的图片中的所有组件。

以下是您的自定义布局:

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

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_marginRight="24dp"
        android:orientation="vertical" >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="29"
            android:textColor="#ffff0000"
            android:textSize="24dp"
            android:textStyle="bold" />

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="of 30"
            android:textSize="14dp"
            android:textStyle="italic" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="August 24 8:01 AM"
            android:textStyle="italic" />

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="Bruce Pearl&apos;s Show-Cause Pentalty And What It Means For His Coaching Future"
            android:textStyle="bold" />
    </LinearLayout>
</LinearLayout>

这看起来像

enter image description here

除此之外,如果你想做一些事情,比如让它捕捉到自定义视图的边缘或类似的东西,那么你可能想要看herehere