Android - 来自资源的item和subItem

时间:2012-02-26 14:18:17

标签: android android-layout

我通过res / values为我的调查问卷添加一个问题来解决问题。 由于我需要在每行中使用ListView后跟复选框,因此我创建了一个自定义ListView。 这是我的list_item.xml

我删除了android:text =" @ string / textLarge"和" @ string / textSmall"这就是为什么TextView标签中有空行的原因。

<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
>

<LinearLayout
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="2dp">

<TextView 
    android:id="@+id/textView_large"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

    android:textSize="16sp">
</TextView>
<TextView 
    android:id="@+id/textView_small"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

    android:textSize="12sp">
</TextView>
</LinearLayout>
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:padding="2dp"
    android:gravity="right">
    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/checkBxc">

    </CheckBox>
</LinearLayout>
</LinearLayout>

和一个简单的清单

<?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:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"></ListView>

我的Main.java文件是下一个

 public class Main extends ListActivity {
 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    setListAdapter(new MyAdapter(this,
            android.R.layout.simple_list_item_2, R.id.textView_large,
            getResources().getStringArray(R.array.questions)));
}

private class MyAdapter extends ArrayAdapter<String> {

    public MyAdapter(Context context, int resource, int textViewResourceId,
            String[] strings) {
        super(context, resource, textViewResourceId, strings);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        LayoutInflater inflater = (LayoutInflater)          getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View row = inflater.inflate(R.layout.list_item, parent, false);
        String[] items = getResources().getStringArray(R.array.questions);
        CheckBox chk = (CheckBox) row.findViewById(R.id.checkBxc);
        TextView txtLarge = (TextView) row.findViewById(R.id.textView_large);

        TextView txtSmall = (TextView)  row.findViewById(R.id.textView_small);

        txtLarge.setText(items[position]);
        return row;

如果我在questions.xml中添加一个项目它会正常工作,但它只显示1行,但是我需要将一个问题作为一个项目(即&#34;你做一些运动吗?&#34; )以及下面的一些评论(即&#34;如果你这样做,请检查#34;)。我怎么能这样做?

2 个答案:

答案 0 :(得分:1)

您必须创建一个自定义ArrayAdapter(一个从ArrayAdapter扩展的类)并为列表视图listView.setAdapter(yourAdapter)设置它 在此适配器中,您必须覆盖getView方法(以返回自定义列表项视图)。

另见此示例: http://android-codes-examples.blogspot.com/2011/03/customized-listview-items-selection.html

答案 1 :(得分:1)

这篇文章:

   LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View row = inflater.inflate(R.layout.list_item, parent, false);

不好:你总是创建新的项目视图,即使它已经存在,也会破坏过多的对象成本时间。您可以使用ArrayAdapter本身的功能。看here