我昨天开始为Android开发,所以我是一个完整的新手。
我正在使用与Eclipse一起使用的ADT包。
我想要做的是我有一个字符串数组。我想在滚动支持的视图中显示它们。我发现ListView
可以做到这一点,但我找到的所有教程都非常复杂并且解释了嵌套视图。
我尝试使用ListView
,但我甚至看不到虚拟视图。
这是我尝试过的:
activity_main.xml中:
<ListView
android:id="@+id/wifiScanResList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/wifiScanButton" >
</ListView>
MainActivity Class中的:
private ListView wifiListView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
wifiListView = (ListView) findViewById(R.id.wifiScanResList);
wifiListView.setEnabled(true);
return true;
}
我现在有两个关于我的问题的问题。
首先,我是否根据自己的需要使用正确的视图?如果不是我应该使用什么?
第二个是,虚拟视图没有出现的原因是什么?另外,我怎样才能简单地将字符串添加到ListView?
答案 0 :(得分:9)
首先你需要创建一个存储所有字符串的ArrayList。
String[] values = new String[] { "Android", "iPhone", "WindowsMobile",
"Blackberry", "WebOS", "Ubuntu", "Windows7", "Max OS X",
"Linux", "OS/2", "Ubuntu", "Windows7", "Max OS X", "Linux",
"OS/2", "Ubuntu", "Windows7", "Max OS X", "Linux", "OS/2",
"Android", "iPhone", "WindowsMobile" };
final ArrayList<String> list = new ArrayList<String>();
for (int i = 0; i < values.length; ++i) {
list.add(values[i]);
}
然后你需要从这个arraylist
创建一个适配器ArrayAdapter adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1,
list);
然后你需要在listview上设置这个适配器
listview.setAdapter(adapter);
请参阅此链接以获取简单的列表视图实现:
答案 1 :(得分:3)
这是我显示列表的简单方法。
1)创建一个名为MySimpleArrayAdapter的类
public class MySimpleArrayAdapter extends ArrayAdapter<String> {
private final Context context;
private final ArrayList<String> values;
public MySimpleArrayAdapter(Context context, ArrayList<String> values) {
super(context, R.layout.rowlayout, values);
this.context = context;
this.values = values;
}
@Override
public void notifyDataSetChanged() {
// TODO Auto-generated method stub
super.notifyDataSetChanged();
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View rowView = null;
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
rowView = inflater.inflate(R.layout.rowlayout, parent, false);
// Displaying a textview
TextView textView = (TextView) rowView.findViewById(R.id.label);
textView.setText(values.get(position));
return rowView;
}
2)在名为rowlayout.xml的布局中创建一个xml文件。我们有textview因为 我们想要显示项目,但您可以显示带有图像的项目。使用ImageView标记
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@+id/label"
android:textSize="30sp" >
</TextView>
</LinearLayout>
3)返回主活动xml文件(activity_main)。我们有你的wifiscan列表
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<ListView
android:id="@+id/wifiScanResList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/wifiScanButton" >
</ListView>
</LinearLayout>
4)最后,在您的主要活动中我们将适配器设置为您的列表
public class MainActivity extends Activity {
// The adapter that we gonna use
MySimpleArrayAdapter adapter;
// List of wifi results
ArrayList<String> wifi_results= new ArrayList<String>();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
adapter = new MySimpleArrayAdapter(this, wifi_results);
setListAdapter(adapter);
getListView().setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position,long id) {
// DO something if the user clicked on the item
}
});
}
}