我有一个用 TextViews 动态填充的 HorizontalScrollView。有时有一个、两个、三个或更多元素。我正在寻找的是一种使项目居中而不管元素数量的方法。
例如,使用一个元素:
| --------- MenuA --------- |
有两个元素:
| ---- MenuA --- MenuB ---- |
包含三个要素:
| - MenuA - MenuB - MenuC - |
有五个元素(MenuD 和 MenuE 被隐藏):
| MenuA - MenuB - MenuC - Me|
更新:这是一个带有两个菜单的简单布局。如何将 MenuA 和 MenuB 居中?
<?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">
<HorizontalScrollView android:id="@+id/horizontalScrollView1"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<LinearLayout android:id="@+id/linearLayout1"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="horizontal">
<TextView android:text="MenuA" android:id="@+id/textView1"
android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
<TextView android:text="MenuB" android:id="@+id/textView2"
android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>