用实训案例来了解
1.创建安卓项目
2.准备好图片资源
3.在字符串资源文件String.xml中定义变量
- 字符串中的菜单项
<item>
- 需要和
<string - array>
连用
<resources>
<string name="app_name">下拉列表 - 选择测试科目</string>
<string name="test_subject">测试科目:</string>
<string-array name="subjects">
<item>安卓开发</item>
<item>Web开发</item>
<item>数据结构</item>
<item>网络技术</item>
<item>Python编程</item>
<item>形势与政策</item>
</string-array>
</resources>
4.主布局资源文件activity_main.xml
- 首先观察我们要做的项目是线性布局
- 有一个文本控件
<TextView>
- 有一个下拉列表控件
<Spinnner>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:padding="15dp"
android:orientation="horizontal"
tools:context=".MainActivity">
<TextView
android:id="@+id/tvTestSubject"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#0000ff"
android:textSize="25sp"
android:text="@string/test_subject"/>
<Spinner
android:id="@+id/spTestSubject"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:entries="@array/subjects"/>
</LinearLayout>
5.此时可以运行来看一下效果
6.设计吐司,选中一个项目弹出吐司
- 通过资源标识符获取控件实例
- 获取测试的科目
- 给下拉列表注册监听器,然后加入吐司
package net.yuanjing.select_subject;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Adapter;
import android.widget.AdapterView;
import android.widget.Spinner;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
private Spinner spSubject;
private String[] subjects;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
spSubject = findViewById(R.id.spTestSubject);
subjects = getResources().getStringArray(R.array.subjects);
spSubject.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> adapterView, View view, int position, long id) {
Toast.makeText(MainActivity.this,"选择的科目是:" + subjects[position],Toast.LENGTH_LONG).show();
}
@Override
public void onNothingSelected(AdapterView<?> adapterView) {
}
});
}
}
7.看最后的运行效果