1

据我所知,没有简单的方法可以使 Android Gallery 垂直。但是画廊有我需要的一件事 - 将项目定位在视图中心。如何在 ListView 中执行此操作?

改编后的 listView 必须像老虎机一样工作 - 所选项目始终位于视图中心。这是一种“离散滚动”

4

1 回答 1

0

您可以使用 Android Gravity 在其父视图中定位视图。例如:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center" >
    <TextView  
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:text="@string/hello" />
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/icon" />
    </LinearLayout>
</LinearLayout>
于 2012-06-14T08:40:10.863 回答