下拉列表

Posted zhongyinghe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了下拉列表相关的知识,希望对你有一定的参考价值。

1、视图

 1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     xmlns:tools="http://schemas.android.com/tools"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     tools:context=".MainActivity" >
 6 
 7     <Spinner
 8         android:id="@+id/spinner"
 9         android:layout_width="wrap_content"
10         android:layout_height="wrap_content"
11          />
12 
13 </RelativeLayout>

2、java代码

 1 package com.example.myspinner;
 2 
 3 import android.os.Bundle;
 4 import android.app.Activity;
 5 import android.view.Menu;
 6 import android.widget.ArrayAdapter;
 7 import android.widget.Spinner;
 8 
 9 public class MainActivity extends Activity {
10 
11     @Override
12     protected void onCreate(Bundle savedInstanceState) {
13         super.onCreate(savedInstanceState);
14         setContentView(R.layout.activity_main);
15         
16         Spinner spinner = (Spinner) findViewById(R.id.spinner);
17         ArrayAdapter<String> adapter = new ArrayAdapter(this, android.R.layout.simple_spinner_item);
18         adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
19         adapter.add("java");
20         adapter.add("php");
21         adapter.add("ruby");
22         spinner.setAdapter(adapter);
23     }
24 
25 }

 

以上是关于下拉列表的主要内容,如果未能解决你的问题,请参考以下文章

如何在文本区域标签中的特定光标位置插入选择标签下拉值作为文本片段?

在所选下拉列表中显示阿拉伯字符

Html页面中select下拉列表框别样用法,一个方法一劳永逸。

用jquery设置下拉不可编辑,但是没起作用,求高手指点,急。。。

VS Code Intellisense 一开始不建议片段

access 下拉列表联动