0

我需要一些帮助来在我拥有的布局中创建一个列表视图。我有正确创建它的 torubles。

这是我到目前为止得到的。

item.xml

   <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<LinearLayout
    android:id="@+id/listview"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/list_selector" >


    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/gradient_bg"
        android:src="@drawable/gs3ultimate" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/label"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/thelistarray"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textColor="#555555" />

        <TextView
            android:id="@+id/summary"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/thelistarry_details"
            android:textColor="#555555"
            android:textSize="10dp" />

    </LinearLayout>

</LinearLayout>

</LinearLayout>

现在它只是左侧的图像,然后是 2 个文本视图,现在我相信我需要 2 个字符串数组,一个用于标题,第二个用于详细信息。我认为图像是第三个。那正确吗?

 Here some java for my list view

AndroidListViewActivity.java

import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.TextView;

public class AndroidListViewActivity extends ListActivity {
   @Override
   public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);

    // storing string resources into Array
    String[] list_array = getResources().getStringArray(R.array.list_array);

    // Binding resources Array to ListAdapter
    this.setListAdapter(new ArrayAdapter<String>(this, R.layout.item, R.id.label, list_array));



    ListView lv = getListView();

    // listening to single list item on click
    lv.setOnItemClickListener(new OnItemClickListener() {
      public void onItemClick(AdapterView<?> parent, View view,
          int position, long id) {


         }
       });
      }
   }

我知道我的 java 缺少添加详细信息 list_array_details。而且我不知道如何添加它以便填充。我还没有为我的意图使用 onitemclick。但是我会确定哪个是点击以及要启动什么活动?例子。我单击列表项 b 并想要喜欢活动“b”,但是当我单击 a 时,它会启动活动“a”

任何帮助将不胜感激,在此先感谢。

4

1 回答 1

1

为此,您需要一个自定义适配器来填充文本视图或多个文本视图以外的其他视图。

在此处此处查看 customadapter

于 2012-09-28T19:43:38.803 回答