我写的用于使用ListView测试Android应用程序。这个ListView我填充了ListAdapter,它工作正常。只有当我启动应用程序时,我才会看到Full ListView :(
这是我的 activity_main.xml
<?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="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<ListView
android:id="@+id/listview1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
></ListView>
</LinearLayout>
这是我的 MainActivity.java
package de.linde.listview;
import java.util.ArrayList;
import java.util.List;
import android.os.Bundle;
import android.app.Activity;
import android.widget.ArrayAdapter;
import android.widget.ListAdapter;
import android.widget.ListView;
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
List valueList = new ArrayList<String>();
for(int i=0;i<10;i++)
{
valueList.add("value" + i);
}
ListAdapter adapter = new ArrayAdapter<String>(getApplicationContext(),android.R.layout.simple_list_item_1,valueList);
final ListView lv = (ListView)findViewById(R.id.listview1);
lv.setAdapter(adapter);
}
}
我做错了什么:(?
答案 0 :(得分:3)
文字颜色问题。
尝试更改listviwe的文字颜色或背景颜色。
它确实有效。
<ListView
android:background="#C0C0C0" <------
android:id="@+id/listview1"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</ListView>