5

如何水平居中对齐我的文本ListView项目Layout
老实说,在问这样一个基本问题之前,我至少搜索了一个小时。

谢谢。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity" >

    <EditText
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:hint="Remind..." />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:baselineAligned="false"
        android:orientation="horizontal" >

        <ListView
            android:id="@+id/listviewTimeInterval"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:scrollbars="none" />

         <-- . . . --/>
         <-- more lists of the same kind--/>
         <-- . . .--/>

    </LinearLayout>

</LinearLayout>
4

3 回答 3

16

您需要为您的列表视图项目创建自己的布局,如下所示

例子:

文本中心.xml:

<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center" >
    <TextView
        android:id="@id/textItem"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />
</LinearLayout>

然后,在您的代码中,您必须这样做

ArrayAdapter<String> ad = new ArrayAdapter<String>(this, R.layout.textcenter, R.id.textItem, functions);
listView.setAdapter(ad);
于 2013-04-23T11:43:42.793 回答
5

如果 LisView 本身是用 android:layout_width="wrap_content" 定义的,我发现不可能在 ListView 中将项目居中。这没有意义,因为这个参数应该只影响 ListView 的位置而不是它的元素。

无论如何,将列表的宽度更改为 match_parent 允许将项目的 (layout_)gravity 属性居中。

于 2016-09-19T11:07:49.063 回答
-4

在 TextView 的布局中为您自定义的 ListView xml 文件使用android:gravity="center". 这样就可以了。

于 2014-02-23T22:13:13.690 回答