我如何在Android应用程序中看到Full ListView

时间:2012-10-11 08:41:12

标签: android listview android-intent android-arrayadapter listadapter

我写的用于使用ListView测试Android应用程序。这个ListView我填充了ListAdapter,它工作正常。只有当我启动应用程序时,我才会看到Full ListView :(

enter image description here

这是我的 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); 
    }

}

我做错了什么:(?

1 个答案:

答案 0 :(得分:3)

文字颜色问题。

尝试更改listviwe的文字颜色或背景颜色。

它确实有效。

  <ListView
   android:background="#C0C0C0" <------
   android:id="@+id/listview1"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content">
   </ListView>