9

我试图在我的应用程序中获得一个 ICS 微调器,并玩了几个小时,最后我使用 HoloEverywhere 来获得它,它正在工作,但我有一个设计问题,是微调器没有包裹它我在 xml 中设置的内容,默认情况下如下所示:

在此处输入图像描述

真的,我用谷歌搜索了几个小时,我发现的只是如何调整微调器项目而不是视图本身的大小,这意味着我希望将微调器调整为选定的项目大小,如下所示:

这是我的 XML:

<RelativeLayout 
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal" >

<org.holoeverywhere.widget.Spinner
    android:id="@+id/spnCities"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:layout_marginRight="10dp"
    />

<TextView
    android:id="@+id/tvCities"
    android:layout_width="70dp"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_centerVertical="true"
    android:layout_marginLeft="10dp"
    android:text="@string/city"
    android:textAppearance="?android:attr/textAppearanceSmall" />

</RelativeLayout>
4

1 回答 1

6

Spinner 的项目具有最大宽度,但最多是父宽度(在 layout_width = wrap_content 上)。您可以在 org.holoeverywhere.widget 包中创建 CustomSpinner 类并覆盖方法 measureContentWidth:

@Override
int measureContentWidth(SpinnerAdapter adapter, Drawable background) {
    if (adapter == null) {
        return 0;
    }
    View view = adapter.getView(getSelectedItemPosition(), null, this);
    if (view.getLayoutParams() == null) {
        view.setLayoutParams(new ViewGroup.LayoutParams(
                ViewGroup.LayoutParams.WRAP_CONTENT,
                ViewGroup.LayoutParams.WRAP_CONTENT));
    }
    view.measure(MeasureSpec.makeMeasureSpec(0,
            MeasureSpec.UNSPECIFIED), MeasureSpec.makeMeasureSpec(0,
            MeasureSpec.UNSPECIFIED));
    int width = view.getMeasuredWidth();
    if (background != null) {
        Rect mTempRect = new Rect();
        background.getPadding(mTempRect);
        width += mTempRect.left + mTempRect.right;
    }
    return width;
}
于 2012-12-20T08:11:52.650 回答