1

我的应用程序用于从一个站点阅读新闻。新闻从 RSS 提要解析并显示为包含标题和日期的元素列表。主要布局是 ListView,消息(新闻)的布局 post_entry 如下所示:

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

    <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:padding="5dp" 
            android:id="@+id/post_title">
      </TextView>
      <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textSize="10sp"
            android:paddingLeft="5dp"
            android:paddingBottom="5dp"
            android:id="@+id/post_pubDate">
      </TextView>


</LinearLayout>

一个 TextView 用于标题,另一个用于日期。

此视图的适配器如下所示:

public class PostAdapter extends ArrayAdapter<PostItem> {

    public ArrayList<PostItem> messages;
    public LayoutInflater inflater;

    public PostAdapter(Activity context, int resource,
            ArrayList<PostItem> objects) {
        super(context, resource, objects);
        messages = objects;
        inflater = LayoutInflater.from(context);
    }

    static class ViewHolder {
        public TextView titleView;
        public TextView pubDateView;
    }

    public View getView(int position, View convertView, ViewGroup parent) {
        ViewHolder holder;
        if (convertView == null) {
            convertView = inflater.inflate(R.layout.post_entry, null, true);
            holder = new ViewHolder();
            holder.titleView = (TextView) convertView
                    .findViewById(R.id.post_title);
            holder.pubDateView = (TextView) convertView
                    .findViewById(R.id.post_pubDate);
            convertView.setTag(holder);
        } else {
            holder = (ViewHolder) convertView.getTag();
        }
        holder.titleView.setText(messages.get(position).title);
        holder.pubDateView.setText(messages.get(position).date);
        return convertView;
    }

}

我想在主要活动中添加刷新按钮。

在主要活动之后看起来像这样:

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

<ListView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="0.8" />

<Button
    android:id="@+id/refresh"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0.2"
    android:text="Refresh" 
    android:onClick="Update"/>

</LinearLayout>

在 Eclipse 的图形模式下,我看到了项目列表及其下方的按钮。

一切似乎都很好,但是当我运行我的应用程序时,屏幕上没有按钮。我只看到新闻列表。

你知道为什么会这样吗?以及如何在列表下方添加按钮?

4

0 回答 0