我是android的新手,我想使用我的自定义布局文件而不是simple_list_item_1,但它不允许这样做。我想在列表中的每个项目中添加一个背景图像(在layout-> custom_view.xml中定义)或者帮我设置整个页面的背景,在下面的代码中我应该使用setContentView方法。如果要在下面的.xml文件中进行任何更改,请告诉我。
public class Planet extends ListActivity {
@Override
public void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);
//setContentView(R.layout.custom_view); Tried to set the view from here but the application is crashing...
String[] planet_names = new String[] {"Mercury","Venus","Earth","Mars","Jupiter","Saturn","Uranus","Neptune","Sun"};
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, planet_names);
setListAdapter(adapter);
ListView lv = getListView();
lv.setTextFilterEnabled(true);
lv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
if(position == 0)
{
Intent myIntent = new Intent(Planet.this, Galaxy.class);
startActivityForResult(myIntent, 0);
}
}
});
}
custom_view.xml文件如下,
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF">
<ListView
android:id="@+id/listView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
答案 0 :(得分:2)
只需使用此
即可 ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.yourcustomview_withonetextview,R.id.yourcustomlayouttextviewid, planet_names);
答案 1 :(得分:0)
您没有在ListActivity
中设置内容视图。 ListActivity
已经为您做到了。如果要自定义布局,请使用Activity
。
答案 2 :(得分:0)
您需要在super.onCreate()
之前致电setContentView()
。如果要在ListActivity中使用自定义布局,则需要为ListView提供标识@android:id/list
。