在android中使用保存和取消按钮的微调器

时间:2012-11-28 15:21:00

标签: android spinner

您好我想设计一个带有保存和取消按钮的微调器,它看起来像iphone下拉列表。

请举个例子来推荐我。

我厌倦了搜索但却无法找到解决方案。

2 个答案:

答案 0 :(得分:0)

打开“res / values / strings.xml”文件,定义将在Spinner(下拉列表)中显示的项目列表。

<?xml version="1.0" encoding="utf-8"?>
<string name="spn_prompt">Choose one</string>
<resources>
    <string-array name="spn_arrays">
        <item>Save</item>
        <item>Cancel States</item>        
    </string-array>

</resources>

将它们设置在你的布局中

 <Spinner
    android:id="@+id/spinner1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:entries="@array/spn_arrays"
    android:prompt="@string/spn_prompt" />

答案 1 :(得分:0)

您最好的选择是创建一个自定义AlertDialog,其中包含Spinner。以下是Custom AlertDialog的示例。在为Android制作应用程序时,我建议遵循Android设计指南,而不是模仿iOS设计,因为它会让用户感到困惑。