1. ホーム
  2. android

[解決済み] ListViewにフッターを追加するには?

2023-04-11 15:44:38

質問

私はアプリケーションを開発しています、私のアプリケーションでは、私はdomの解析を使用してデータを表示するためにリストビューを使用しています、私はフッターをクリックすると、リストビューに追加のデータが追加され、私は画像を添付し、私はそのデザインとプロセスをしたい、画像1および画像2を参照してください、私は赤い四角でフッターを言及している

図1-フッターはquot;More News"のようなものです。

図2-リストビューに追加された10レコードを追加する

どのように解決するのですか?

フッターに設定したいテキストで構成されたフッタービューレイアウトを作成し、試しに

View footerView = ((LayoutInflater) ActivityContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.footer_layout, null, false);
ListView.addFooterView(footerView);

フッターのレイアウトはこんな感じです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingTop="7dip"
    android:paddingBottom="7dip"
    android:orientation="horizontal"
    android:gravity="center">

    <LinearLayout 
        android:id="@+id/footer_layout" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="center"
        android:layout_gravity="center">

    <TextView 
        android:text="@string/footer_text_1" 
        android:id="@+id/footer_1" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:textSize="14dip" 
        android:textStyle="bold" 
        android:layout_marginRight="5dip" />
    </LinearLayout>
</LinearLayout> 

活動クラスはあり得る。

public class MyListActivty extends ListActivity {
    private Context context = null;
    private ListView list = null;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        list = (ListView)findViewById(android.R.id.list);

        //code to set adapter to populate list
        View footerView =  ((LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.footer_layout, null, false);
        list.addFooterView(footerView);
    }
}