简单的列表项显示

package com.cqvie;

import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;

public class ListItemsActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
new AlertDialog.Builder(this).setTitle("列表框").setItems(
new String[] { "Item1", "Item2" }, null).setNegativeButton(
"确定", null).show();
}
}

 

运行结果:

posted on 2014-12-08 12:49  Iitb  阅读(91)  评论(0)    收藏  举报

导航