search

Home  >  Q&A  >  body text

android spinner改变下拉弹出的位置

现在弹出的下拉框是直接接屏幕的

<Spinner
                android:id="@+id/termSpi"
                android:layout_width="wrap_content"
                android:layout_height="50dp"
                android:gravity="right"
                android:popupBackground="#fdfdfd"
                />

我想要弹出来的接在下拉框的下面,而不是屏幕顶部下面
于是加了


                android:dropDownVerticalOffset="-50dp"
                android:dropDownHorizontalOffset="20dp"
     

数字随便写的,只是想看效果,却没有任何变化
请问该怎么做?改变下拉框弹出的位置

迷茫迷茫2773 days ago515

reply all(1)I'll reply

  • 阿神

    阿神2017-04-17 18:01:56

    Where to put your spinner? In addition, spinner is very tricky. It is recommended to use popupwindow when making drop-down menus, which makes customization more flexible

    reply
    0
  • Cancelreply