• 下拉列表项的配置方式


    Spainner
    a. 资源文件配置
       第一步: 在string .xml配置
                   <string name="city">城市</string>
                   <string-array name="citys">
                   <item>上海</item>
                   <item>长沙</item>
                   <item>大益阳</item>
                   </string-array>
       第二步: 指定资源
                   Android :entries = "@array/citys"

    b. 适配器配置
       第一种: 资源配置
                   arrayAdapter<CharSequence> adapte =
                   ArrayAdapter . createFromResource(this, 资源id ,列表显示的样式);

       第二种:列表配置
                   ArrayAdapter<CharSequence> adapte = new
                   ArrayAdapter <CharSequence> (this, 列表显示的样式. 集合数据);

  • 相关阅读:
    thinkphp 视图定义
    ThinkPHP支持模型的分层
    thinkphp 虚拟模型
    thinkphp 参数绑定
    thinkphp 自动完成
    thinkphp 自动验证
    thinkphp 子查询
    thinkphp 动态查询
    ThinkPHP sql查询
    thinkphp 统计查询
  • 原文地址:https://www.cnblogs.com/alhy/p/6876502.html
Copyright © 2020-2023  润新知