96

私は非常によくある問題に直面しています: アクティビティをレイアウトしたところ、この 内にいくつかの項目が表示されるはずScrollViewです。これを行う通常の方法は、既存の を使用し、ListAdapterそれを に接続するとListViewアイテムのリストが表示されます。

しかし、スクロールを台無しにするため、ネストさListViewれた aを配置しないでください-AndroidScrollView Lintでさえそれについて文句を言います。

だからここに私の質問があります:

をや類似ListAdapterのものに接続するにはどうすればよいですか?LinearLayout

このソリューションは多くのアイテムに対応できないことはわかっていますが、私のリストは非常に短い (< 10 アイテム) ため、ビューの再利用は実際には必要ありません。パフォーマンスに関しては、すべてのビューを に直接配置しても問題ありませんLinearLayout

私が思いついた解決策の 1 つは、既存のアクティビティ レイアウトを の headerView セクションに配置することListViewです。しかし、これはこのメカニズムを悪用しているように感じるので、よりクリーンなソリューションを探しています。

アイデア?

更新:正しい方向性を刺激するために、サンプル レイアウトを追加して問題を示します。

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


    <ScrollView
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="#FFF"
            >

        <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical"
                android:paddingLeft="@dimen/news_detail_layout_side_padding"
                android:paddingRight="@dimen/news_detail_layout_side_padding"
                android:paddingTop="@dimen/news_detail_layout_vertical_padding"
                android:paddingBottom="@dimen/news_detail_layout_vertical_padding"
                >

            <TextView
                    android:id="@+id/news_detail_date"
                    android:layout_height="wrap_content"
                    android:layout_width="fill_parent"
                    android:gravity="center_horizontal"
                    android:text="LALALA"
                    android:textSize="@dimen/news_detail_date_height"
                    android:textColor="@color/font_black"
                    />

            <Gallery
                    android:id="@+id/news_detail_image"
                    android:layout_height="wrap_content"
                    android:layout_width="fill_parent"
                    android:paddingTop="5dip"
                    android:paddingBottom="5dip"
                    />

            <TextView
                    android:id="@+id/news_detail_headline"
                    android:layout_height="wrap_content"
                    android:layout_width="fill_parent"
                    android:gravity="center_horizontal"
                    android:text="Some awesome headline"
                    android:textSize="@dimen/news_detail_headline_height"
                    android:textColor="@color/font_black"
                    android:paddingTop="@dimen/news_detail_headline_paddingTop"
                    android:paddingBottom="@dimen/news_detail_headline_paddingBottom"
                    />

            <TextView
                    android:id="@+id/news_detail_content"
                    android:layout_height="wrap_content"
                    android:layout_width="fill_parent"
                    android:text="Here comes a lot of text so the scrollview is really needed."
                    android:textSize="@dimen/news_detail_content_height"
                    android:textColor="@color/font_black"
                    />

            <!---
                HERE I NEED THE LIST OF ITEMS PROVIDED BY THE EXISTING ADAPTER. 
                They should be positioned at the end of the content, so making the scrollview smaller is not an option.
            ---->                        

        </LinearLayout>
    </ScrollView>
</LinearLayout>

更新 2見出しを変更して、理解しやすくしました (反対票を獲得しました!)。

4

4 に答える 4

97

おそらく手動でアイテムを に追加する必要がありますLinearLayout:

LinearLayout layout = ... // Your linear layout.
ListAdapter adapter = ... // Your adapter.

final int adapterCount = adapter.getCount();

for (int i = 0; i < adapterCount; i++) {
  View item = adapter.getView(i, null, null);
  layout.addView(item);
}

編集: 約 200 個の自明でないリスト項目を表示する必要がある場合、このアプローチを拒否しました。非常に遅いです。Nexus 4 では、「リスト」を表示するのに約 2 秒かかりました。そこで、ヘッダーを使用した Flo のアプローチに目を向けました。ビューの作成時ではなく、ユーザーのスクロール時にリスト ビューがオンデマンドで作成されるため、はるかに高速に動作します。

再開:ビューを手動でレイアウトに追加する方がコーディングは簡単ですが (したがって、可動部分やバグが少なくなる可能性があります)、パフォーマンスの問題があるため、50 個以上のビューがある場合は、ヘッダー アプローチを使用することをお勧めします。

例。基本的に、アクティビティ (またはフラグメント) のレイアウトは次のように変換されます (ScrollView はもう必要ありません)。

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

次にonCreateView()(フラグメントの例を使用します) では、ヘッダー ビューを追加してからアダプターを設定する必要があります (ヘッダーのリソース ID は であると仮定しますheader_layout)。

ListView listView = (ListView) inflater.inflate(R.layout.my_top_layout, container, false);
View header = inflater.inflate(R.layout.header_layout, null);
// Initialize your header here.
listView.addHeaderView(header, null, false);

BaseAdapter adapter = // ... Initialize your adapter.
listView.setAdapter(adapter);

// Just as a bonus - if you want to do something with your list items:
view.setOnItemClickListener(new AdapterView.OnItemClickListener() {
  @Override
  public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
    // You can just use listView instead of parent casted to ListView.
    if (position >= ((ListView) parent).getHeaderViewsCount()) {
      // Note the usage of getItemAtPosition() instead of adapter's getItem() because
      // the latter does not take into account the header (which has position 0).
      Object obj = parent.getItemAtPosition(position);
      // Do something with your object.
    }
  }
});
于 2012-09-13T12:00:40.313 に答える
6

私はヘッダービューソリューションに固執します。何も悪いことはありません。現時点では、まったく同じアプローチを使用してアクティビティを実装しています。

明らかに、「アイテム部分」は静的よりも動的です(アイテム数の変化とアイテム数の修正など)。そうでない場合は、アダプターの使用についてまったく考えません。したがって、アダプタが必要な場合は、ListViewを使用してください。

アダプターからLinearLayoutにデータを取り込むソリューションを実装することは、最終的にはカスタムレイアウトを使用してListViewを構築することに他なりません。

ちょうど私の2セント。

于 2012-09-13T12:10:43.187 に答える
0

ビューを main.xml onCreate に設定し、row.xml からインフレートします

main.xml

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

        <ListView
            android:id="@+id/mainListView"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_above="@+id/size"
            android:layout_below="@+id/editText1"
            android:gravity="fill_vertical|fill_horizontal"
            android:horizontalSpacing="15dp"
            android:isScrollContainer="true"
            android:numColumns="1"
            android:padding="5dp"
            android:scrollbars="vertical"
            android:smoothScrollbar="true"
            android:stretchMode="columnWidth" >

</ListView>

    <TextView
        android:id="@+id/size"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:background="#ff444444"
        android:gravity="center"
        android:text="TextView"
        android:textColor="#D3D3D3"
        android:textStyle="italic" />

    </EditText>

</RelativeLayout> 

行.xml

<?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:paddingTop="3dp">

<TextView
  android:id="@+id/rowTextView"
  android:layout_width="0dip"
  android:layout_height="41dp"
  android:layout_margin="4dp"
  android:layout_weight="2.83"
  android:ellipsize="end"
  android:gravity="center_vertical"
  android:lines="1"
  android:text="John Doe"
  android:textColor="@color/color_white"
  android:textSize="23dp" >
</TextView>

</LinearLayout>
于 2012-09-13T11:53:18.467 に答える
0

と でアダプターの機能を複製する次のコードを使用しViewGroupますTabLayout。これの良いところは、リストを変更して再度バインドすると、変更された項目のみに影響することです:

使用法:

val list = mutableListOf<Person>()
layout.bindChildren(list, { it.personId }, { bindView(it) }, {d, t ->bindView(d, t)})
list.removeAt(0)
list+=newPerson
layout.bindChildren(list, { it.personId }, { bindView(it) }, {d, t ->bindView(d, t)})

の場合ViewGroups:

fun <Item, Key> ViewGroup.bindChildren(items: List<Item>, id: (Item) -> Key, view: (Item) -> View, bind: (Item, View) -> Unit) {
    val old = children.map { it.tag as Key }.toList().filter { it != null }
    val new = items.map(id)

    val add = new - old
    val remove = old - new
    val keep = new.intersect(old)

    val tagToChildren = children.associateBy { it.tag as Key }
    val idToItem = items.associateBy(id)

    remove.forEach { tagToChildren[it].let { removeView(it) } }
    keep.forEach { bind(idToItem[it]!!, tagToChildren[it]!!) }
    add.forEach { id -> view(idToItem[id]!!).also { it.tag = id }.also { addView(it, items.indexOf(idToItem[id])) } }
}

私はTabLayoutこれを持っています:

fun <Item, Key> TabLayout.bindTabs(items: List<Item>, toKey: (Item) -> Key, tab: (Item) -> TabLayout.Tab, bind: (Item, TabLayout.Tab) -> Unit) {
    val old = (0 until tabCount).map { getTabAt(it)?.tag as Key }
    val new = items.map(toKey)

    val add = new - old
    val remove = old - new
    val keep = new.intersect(old)

    val tagToChildren = (0 until tabCount).map { getTabAt(it) }.associateBy { it?.tag as Key }
    val idToItem = items.associateBy(toKey)

    remove.forEach { tagToChildren[it].let { removeTab(it) } }
    keep.forEach { bind(idToItem[it]!!, tagToChildren[it]!!) }
    add.forEach { key -> tab(idToItem[key]!!).also { it.tag = key }.also { addTab(it, items.indexOf(idToItem[key])) } }
}
于 2018-05-18T23:41:10.523 に答える