0

我正在尝试为我的自定义列表添加页脚,但仍然无法解决。我的目标只是在列表末尾添加一些按钮。我试过这个:

adapter = new GeneralRssAdapter(this,R.layout.titlesrss, data);
    LayoutInflater inflater = getLayoutInflater();
    lv.addFooterView( inflater.inflate( R.layout.footer_layout, null ), null, false);
    lv.setAdapter(adapter);

但仍然看不到任何页脚。这是我的xml:

<?xml version="1.0" encoding="utf-8"?>

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

        <ImageView
            android:id="@+id/iconremove"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:layout_margin="5dip"
            android:scaleType="centerCrop"
            android:src="@drawable/delete"
            android:visibility="gone" />

        <ImageView
            android:id="@+id/iconfav"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:layout_margin="5dip"
            android:scaleType="centerCrop"
            android:src="@drawable/rss" />

        <TextView
            android:id="@+id/textView"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|center_horizontal|center"
            android:layout_margin="5dip"
            android:layout_weight="1"
            android:textSize="20dip" />

    </LinearLayout>
  <ListView android:id="@+id/ListView01"
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content"/>

     </RelativeLayout>

和页脚:

<?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" >

        <ImageView
            android:id="@+id/image"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1.20"
            android:src="@drawable/tutorialrss"
      />

</LinearLayout>

希望你能帮我:)

4

2 回答 2

1

尝试这个

 adapter = new GeneralRssAdapter(this,R.layout.titlesrss, data);
         LayoutInflater mInflater = (LayoutInflater)getSystemService(Activity.LAYOUT_INFLATER_SERVICE);
    final View footer = mInflater.inflate(R.layout.footer_layout, null);
choicelist.addFooterView(footer);
    choicelist.setAdapter(adapter);

我已经编辑了这个 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" >

        <ImageView
            android:id="@+id/image"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:src="@drawable/tutorialrss"
      />

</LinearLayout>

对我来说,它的工作请检查一次。

在此处输入图像描述

adapter = new ListAdapter(this, data);
        ListView lvMain = (ListView) findViewById(R.id.list);
        LayoutInflater mInflater = (LayoutInflater) getSystemService(Activity.LAYOUT_INFLATER_SERVICE);
        final View footer = mInflater.inflate(R.layout.footer, null);
        lvMain.addFooterView(footer);
        lvMain.setAdapter(adapter);
于 2013-03-15T17:44:10.000 回答
0

我所做的是设置我的页脚/页眉,setContentView()然后在适配器中使用listxml。我通常不喜欢单行答案,但这就是我所做的一切

于 2013-03-15T18:01:10.717 回答