android spinner中是否有任何输入选项?

时间:2017-07-21 09:28:38

标签: android-spinner

Microsoft word drop-down image

如图所示,在Microsoft Word / Powerpoint中,字体大小的下拉微调器允许用户在微调框中键入自己选择的字体大小,此外还可以从下拉列表中手动选择一个。 我的问题是,如果在Android中可以进行自我键入"自我键入"选择同样吗?

1 个答案:

答案 0 :(得分:0)

在这里。我这样解决了。

<FrameLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@android:color/background_light">
  <Spinner
    android:layout_width="match_parent"
    android:layout_height="match_parent"></Spinner>
  <EditText
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:text="12"
    android:inputType="numberDecimal"
    android:gravity="center"/>
</FrameLayout>