8

Web サービスからコンテンツを動的にロードする必要があるページを含むアプリを作成しました。NestedScrollView 内の線形レイアウトと一緒にスクロールできるリストビューが必要です。ただし、コンテンツがリストビューに読み込まれると、高さがいっぱいになりません。

これが私のコードです。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.myquestionth.myquestionth10.Profile2Activity"
    tools:showIn="@layout/activity_profile2">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="400dp"
                android:background="#BBBBBB" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceLarge"
                android:text="Media heading"
                android:id="@+id/textView2" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:text="Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis."
                android:id="@+id/textView8" />

        </LinearLayout>

        <ListView
            android:id="@+id/listView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#70bcf5" />

    </LinearLayout>

</android.support.v4.widget.NestedScrollView>

スクロールビューをネストできないことについていくつか検索しました。これは、Google プレイ レビュー ページのレイアウト設計に従って欲しい例です。彼らが使用する方法は何ですか?私が何か間違ったことをしたら、私に提案してください。どうもありがとう。

ここに画像の説明を入力

これが私が欲しいものです。

ここに画像の説明を入力

4

4 に答える 4

6

Lollipop 以降で使用できます

yourtListView.setNestedScrollingEnabled(true);

これにより、RecyclerView を使用する必要がある古いバージョンの OS との下位互換性が必要な場合に、このビューのネストされたスクロールが有効または無効になります。

于 2016-11-07T07:18:16.047 に答える
1

Linear Layout の下の ScrollView 内に ListView を追加する代わりに、ListView 内にすべてを配置することをお勧めします。

はい、できます。

アダプターに次のメソッドを実装 (オーバーライド) します。

public class MyAdapter extends BaseAdapter {
    // One view to Header
    // One view to filter options ("most helpful first" and "Options")
    // One view to comments
    private final static int VIEW_HEADER = 0;
    private final static int VIEW_OPTIONS = 1;
    private final static int VIEW_COMMENTS = 2;
    private final static int VIEW_TYPE_MAX = 3;

    @Override
    public int getViewTypeCount () {
        // It will return 3 since I have 3 different types of VIEW
        return VIEW_TYPE_MAX;
    }

    @Override
    public int getItemViewType(int position) {
        if (position == 0)
            return VIEW_HEADER;
        else if (position == 1)
            return VIEW_OPTIONS;
        else
            return VIEW_COMMENTS;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        if (convertView == null) {
            if(getItemViewType(position) == VIEW_HEADER)
                // Inflate HEADER Layout
            else if (getItemViewType(position) == VIEW_OPTIONS)
                // Inflate Options Layout
            else
                // Inflate comments Layout
        }

        // Fill the view contents according to its type
        ....
        return convertView;
    }
}

Android はビューを再利用します。ただし、Android は常に同じタイプのビューを再利用します。

于 2016-02-25T17:45:39.083 に答える