我在android中尝试了一个简单的列表视图。 我从一些网站上得到了一个例子。有效。代码如下:
主布局文件:(res / layout / main.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">
<ListView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mainListView">
</ListView>
</LinearLayout>
行文件:(res / layout / simplerow.xml)
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rowTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:textSize="16sp" >
</TextView>
主要活动:
package com.windrealm.android;
import java.util.ArrayList;
import java.util.Arrays;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.ListView;
public class SimpleListViewActivity extends Activity {
private ListView mainListView ;
private ArrayAdapter<String> listAdapter ;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Find the ListView resource.
mainListView = (ListView) findViewById( R.id.mainListView );
// Create and populate a List of planet names.
String[] planets = new String[] { "Mercury", "Venus", "Earth", "Mars",
"Jupiter", "Saturn", "Uranus", "Neptune"};
ArrayList<String> planetList = new ArrayList<String>();
planetList.addAll( Arrays.asList(planets) );
// Create ArrayAdapter using the planet list.
listAdapter = new ArrayAdapter<String>(this, R.layout.simplerow, planetList);
// Add more planets. If you passed a String[] instead of a List<String>
// into the ArrayAdapter constructor, you must not add more items.
// Otherwise an exception will occur.
listAdapter.add( "Ceres" );
listAdapter.add( "Pluto" );
listAdapter.add( "Haumea" );
listAdapter.add( "Makemake" );
listAdapter.add( "Eris" );
// Set the ArrayAdapter as the ListView's adapter.
mainListView.setAdapter( listAdapter );
}
}
我试图添加图像,甚至不是动态图像。我只是想在simplerow.xml
文件中添加一个布局。但它不起作用。
以下代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:contentDescription="@string/songs"
android:src="@drawable/song_bg" />
<ImageView
android:id="@+id/albumArt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:contentDescription="@string/album"
android:src="@drawable/albumart_shanghai" />
<TextView
android:id="@+id/rowTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/albumArt"
android:layout_toRightOf="@+id/albumArt"
android:layout_marginLeft="10dp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@android:color/black" />
<ImageButton
android:id="@+id/imageView3"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="@null"
android:contentDescription="@string/arrow"
android:src="@drawable/arrow_icon" />
</RelativeLayout>
我们无法在ListView中添加Relative布局? 请帮助我一个月后我对ListView感到震惊。我甚至无法移动一步:( 我是java和XML的新手。请有人告诉我正确的道路。
答案 0 :(得分:1)
首先,您需要扩展ListActivity,例如
public class MyListActivity extends ListActivity{}
然后你可以简单地将适配器指定为
setListAdapter(adapter);
你的布局文件有问题,android列表视图id应为@android:id/list
,android开发者网站说
你自己的视图必须包含一个带有id的ListView对象 “@android:ID /列表”
修改强>
您使用的数组适配器构造函数签名基本上是
ArrayAdapter(Context context, int textViewResourceId, List<T> objects)
但是如果你想使用更复杂的布局,请使用
public ArrayAdapter (Context context, int resource, int textViewResourceId, List<T> objects)
其中textViewResourceId
应引用布局中的textview id。
这显然会导致您可以使用多个文本字段进行布局,但给定的文本将显示在id指定的文本字段中。
因此,要完成任务,您需要创建自己的适配器,扩展BaseAdapter。在该适配器中,您需要覆盖
public View getView(int position, View convertView, ViewGroup parent) {}
方法,您可以在其中扩充布局并设置适当的值。
我认为你至少会有一些想法,然后看一下关于listview的this解释最多的教程。
答案 1 :(得分:1)
答案 2 :(得分:0)
ListView示例
布局文件:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="20sp" >
</TextView>
主要活动:
public class MainActivity extends ListActivity {
static final String[] NUM= new String[] { "1", "2", "3",
"4", "5", "6", "7", "8",
"9", "10", "11", "12", "13" };
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setListAdapter(new ArrayAdapter<String>(this, R.layout.list_num,NUM));
ListView listView = getListView();
listView.setTextFilterEnabled(true);
listView.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
// When clicked, show a toast with the TextView text
Toast.makeText(getApplicationContext(),
((TextView) view).getText(), Toast.LENGTH_SHORT).show();
}
});
}
}