当我在XML上放置 <ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
时:
ArrayAdapter
并且我还没有将这些项目放入MainActivity中,但它已经为我提供了1到8的默认项目(如屏幕截图),即使我在MainActivity
中使用ListView
,它仍未改变<step1 :someValue="value" />
。
对此有任何帮助将不胜感激。
答案 0 :(得分:0)
根据您发布的屏幕截图,这是listview未正确初始化的结果。
你的布局应该是这样的
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".ListActivity" >
<ListView
android:id="@+id/mobile_list"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
您的MainActivity应该看起来像这样
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.ArrayAdapter;
import android.widget.ListView;
public class MainActivity extends Activity {
// Array of strings...
String[] mobileArray = {"Android","IPhone","WindowsMobile","Blackberry",
"WebOS","Ubuntu","Windows7","Max OS X"};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ArrayAdapter adapter = new ArrayAdapter<String>(this,
R.layout.activity_listview, mobileArray);
ListView listView = (ListView) findViewById(R.id.mobile_list);
listView.setAdapter(adapter);
}
}
你的listview项目布局资源文件看起来应该是这样的
<?xml version="1.0" encoding="utf-8"?>
<!-- Single List Item Design -->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/label"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dip"
android:textSize="16dip"
android:textStyle="bold" >
</TextView>
这可以帮助您了解它的功能。有关详情,请查看此https://www.tutorialspoint.com/android/android_list_view.htm