ListActivity
Posted cuthead
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ListActivity相关的知识,希望对你有一定的参考价值。
import android.app.ListActivity; import android.os.Bundle; import android.widget.ArrayAdapter; public class Lesbian extends ListActivity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_lesbian); String[] str = {"杨超越","刘建威"}; ArrayAdapter adapter = new ArrayAdapter(this,android.R.layout.simple_expandable_list_item_1,str); setListAdapter(adapter); } }
以上是关于ListActivity的主要内容,如果未能解决你的问题,请参考以下文章