มุมมองรายการ Android ภายในมุมมองเลื่อน


268

ฉันมีเลย์เอาต์ Android ที่มีscrollViewองค์ประกอบจำนวนหนึ่งอยู่ด้วย ที่ด้านล่างของscrollViewฉันมีlistViewอะแดปเตอร์ที่มีประชากรอยู่แล้ว

ปัญหาที่ฉันกำลังประสบอยู่ก็คือ Android ไม่รวมตัวlistViewจากรุ่นscrollViewที่scrollViewมีฟังก์ชั่นเลื่อนได้ ฉันต้องการที่listViewจะตราบเท่าที่เนื้อหาเป็นและสำหรับมุมมองเลื่อนหลักที่จะสามารถเลื่อนได้

ฉันจะบรรลุพฤติกรรมนี้ได้อย่างไร

นี่คือเค้าโครงหลักของฉัน:

<ScrollView
    android:id="@+id/scrollView1"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="2"
    android:fillViewport="true"
    android:gravity="top" >

    <LinearLayout
        android:id="@+id/foodItemActvity_linearLayout_fragments"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
    </LinearLayout>

</ScrollView>

จากนั้นผมก็โปรแกรมเพิ่มคอมโพเนนต์ของฉันไป linearlayour foodItemActvity_linearLayout_fragmentsกับประชาชนได้: ด้านล่างเป็นหนึ่งในมุมมองที่โหลดลงใน linearlayout นั้น นี่คือสิ่งที่ทำให้ฉันมีปัญหากับม้วนกระดาษ

<?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="wrap_content"
    android:orientation="vertical" >

    <TextView
       android:id="@+id/fragment_dds_review_textView_label"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="Reviews:"
       android:textAppearance="?android:attr/textAppearanceMedium" />

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

อะแดปเตอร์ของฉันเติมมุมมองรายการนี้ให้เต็ม

นี่คือภาพจากตัวแสดงลำดับชั้นของ android เมื่อฉันคลิกที่ scrollView หลัก:

ดูรายการ Android ภายในมุมมองเลื่อน

อย่างที่คุณเห็นมันไม่รวมรายการรีวิวบทวิจารณ์

ฉันควรจะเลื่อนหน้าลงและดูบทวิจารณ์ 8 รายการ แต่แสดงให้ฉันเห็นเพียง 3 ข้อเท่านั้นและฉันสามารถเลื่อนส่วนเล็ก ๆ ที่มีบทวิจารณ์ได้ ฉันต้องการเลื่อนหน้าโลก



ฉันได้รับการแก้ปัญหาเมื่อ: androidhub4you.com/2012/12/4
Md Imran Choudhury

นี่มันคือ คุณสามารถค้นหาข้อมูลที่เป็นคำอธิบายแบบเต็ม: stackoverflow.com/questions/20116381/…
Farruh Habibullaev

นี่เป็นเรื่องง่ายมากที่จะใช้ RecycleView นาม ListView
Anand Raj Mehta

ฉันหวังว่ามันจะทำงานให้คุณstackoverflow.com/a/62011087/11554604
S Kumar

คำตอบ:


559

ที่สั้นที่สุดและวิธีที่ง่ายที่สุดสำหรับการใด ๆChildView เพื่อเลื่อนภายใน ScrollView อะไรก็ได้เช่น ListView, RecyclerView ฯลฯ คุณไม่จำเป็นต้องทำอะไรเป็นพิเศษในโค้ด

เพียงแทนที่ScrollViewด้วยandroid.support.v4.widget.NestedScrollViewใน xml ปัจจุบันของคุณจากนั้นเวทมนตร์ก็จะเกิดขึ้น

ด้านล่างนี้คือตัวอย่างรหัส xml:

<?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"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v7.widget.LinearLayoutCompat
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:padding="16dp"
        android:paddingBottom="20dp">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Recycler View inside a Scroll View"
            android:textColor="@color/black"
            android:textSize="@dimen/_20sp"
            android:textStyle="bold" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:text="Below is a Recycler View as an example."
            android:textSize="16sp" />

        <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            app:layout_constraintTop_toBottomOf="@id/et_damaged_qty" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:text="This text automatically goes below the Recycler View."
            android:textSize="16sp" />
    </android.support.v7.widget.LinearLayoutCompat>
</android.support.v4.widget.NestedScrollView>

ตอนนี้คุณสามารถกำจัดการแฮ็กที่น่าเกลียดทั้งหมดที่เราทำเพื่อหลีกเลี่ยงการเลื่อนที่ซ้อนกันนี้

ได้เวลาเล่นแล้ว นรก Yeeeeeeeeeeeeeeeeeah!

ป้อนคำอธิบายรูปภาพที่นี่


1
@JeetenParmar ได้ระบุปัญหานี้ไปแล้วอีกครั้งฉันต้องบอกว่า - นี่เป็นแฮ็คที่ดี แต่ไม่ทำงานเมื่อ TextView มีหลายบรรทัดในนั้น Arshu - วิธีแก้ปัญหาในภายหลังสำหรับ Jeeten ของคุณไม่ทำงาน (ระบุ Jeeten แล้ว) หากคุณพบทางออกใด ๆ กรุณาโพสต์ที่นี่ ฉันต้องการทางออกที่ไม่ดี
Khobaib

4
ฉันพบโซลูชันนี้ซึ่งทำงานได้อย่างสมบูรณ์ในกรณีของฉันเช่นรองรับรายการที่มีความสูงแปรปรวน - stackoverflow.com/a/17503823/1433187
Khobaib

3
โปรดลบrequestLayout()วิธีที่ซ้ำซ้อน- setLayoutParams แล้ว
Oleksii Malovanyi

2
การแก้ไขการวัดview.measure(MeasureSpec.makeMeasureSpec(desiredWidth, MeasureSpec.AT_MOST),MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
Oleksii Malovanyi

2
ฉันต้องทำเช่นเดียวกันกับ gridview .. ข้อเสนอแนะใด ๆ
Bunny

223

คำตอบนั้นง่ายและฉันประหลาดใจที่ยังไม่ได้รับคำตอบที่นี่

ใช้ a Header Viewหรือ / และFooter Viewในรายการตัวเอง อย่าผสมScrollViewกับListViewหรือสิ่งใดก็ตามที่สามารถเลื่อนได้ มันถูกใช้กับหัวกระดาษและท้ายกระดาษ :)

โดยพื้นฐานแล้วนำเนื้อหาทั้งหมดเหนือ ListView ของคุณวางไว้ในไฟล์. xml อีกอันหนึ่งเป็นเลย์เอาต์จากนั้นในโค้ดจะขยายและเพิ่มเข้าไปในรายการเป็นมุมมองส่วนหัว

กล่าวคือ

View header = getLayoutInflater().inflate(R.layout.header, null);
View footer = getLayoutInflater().inflate(R.layout.footer, null);
listView.addHeaderView(header);
listView.addFooterView(footer);

2
@ericosg แต่ฉันไม่ต้องการสิ่งนี้ทำไมฉันกำลังมองหาวิธีการแก้ปัญหา
Jeeten Parmar

13
หากคุณเพิ่มมุมมองส่วนหัวตำแหน่ง int param ใน onListItemClick จะเป็น +1 ดังนั้นคุณต้องจัดการกับมัน (รายการแรกในรายการจะมีตำแหน่งที่ 1 ไม่ใช่ 0)
CoPLaS

ฉันหวังว่าจะมีส่วนหัวสำหรับ ViewPager
hasan

2
ฉันหวังว่าจะมีส่วนหัวสำหรับ GridView
บางคนอยู่ที่ไหนสักแห่ง

1
วิธีนี้เป็นไปได้ด้วยดีเว้นแต่คุณต้องการ edittext ในส่วนหัว Edittext ไม่คงโฟกัสเมื่ออยู่ใน listview
Balwinder SIngh

41

ฉันรู้ว่ามันนานมากแล้ว แต่ฉันก็ได้รับปัญหานี้ด้วยลองใช้วิธีนี้แล้วก็ใช้งานได้ ดังนั้นฉันคิดว่ามันอาจช่วยคนอื่นด้วย

ฉันเพิ่ม android: fillViewport = "true" บน layout xml สำหรับ scrollView ดังนั้นโดยรวม ScrollView ของฉันจะเป็นเช่นนี้

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/scrollView6" 
    android:fillViewport="true">

และมันก็ใช้งานได้เหมือนเวทมนตร์สำหรับฉัน ListView ที่อยู่ใน ScrollView ของฉันจะขยายขนาดอีกครั้ง

นี่คือตัวอย่างโค้ดแบบเต็มสำหรับ ScrollView และ ListView

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/scrollView6" android:fillViewport="true">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        ....
        <ListView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/lv_transList" android:layout_gravity="top"
            android:layout_marginTop="5dp"/>
        ....
    </LinearLayout>
</ScrollView>

4
มันปิดใช้งานพฤติกรรมการเลื่อน ListView ดังนั้นคุณไม่สามารถเลื่อนมุมมองรายการของคุณหากรายการมีขนาดเกินกว่าขนาดหน้าจอ
Darush

3
มันปิดการใช้งานความสามารถในการเลื่อนของ ScrollView
Pranav Mahajan

24

คุณสร้าง ListView แบบกำหนดเองซึ่งไม่สามารถเลื่อนได้

  public class NonScrollListView extends ListView {

            public NonScrollListView(Context context) {
                super(context);
            }
            public NonScrollListView(Context context, AttributeSet attrs) {
                super(context, attrs);
            }
            public NonScrollListView(Context context, AttributeSet attrs, int defStyle) {
                super(context, attrs, defStyle);
            }
            @Override
            public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
                    int heightMeasureSpec_custom = MeasureSpec.makeMeasureSpec(
                            Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
                    super.onMeasure(widthMeasureSpec, heightMeasureSpec_custom);
                    ViewGroup.LayoutParams params = getLayoutParams();
                    params.height = getMeasuredHeight();    
            }
        }

ในไฟล์ทรัพยากรเค้าโครงของคุณ

     <?xml version="1.0" encoding="utf-8"?>
        <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fadingEdgeLength="0dp"
            android:fillViewport="true"
            android:overScrollMode="never"
            android:scrollbars="none" >

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >

                <!-- com.Example Changed with your Package name -->

                <com.Example.NonScrollListView
                    android:id="@+id/lv_nonscroll_list"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content" >
                </com.Example.NonScrollListView>

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/lv_nonscroll_list" >

                    <!-- Your another layout in scroll view -->

                </RelativeLayout>
            </RelativeLayout>

        </ScrollView>

ในไฟล์ Java สร้างวัตถุของ customListview ของคุณแทน ListView เช่น: NonScrollListView non_scroll_list = (NonScrollListView) findViewById (R.id.lv_nonscroll_list);


หรือคุณสามารถแชร์ได้ที่ลิงค์
miracle-doh

บังคับให้ scrollview เลื่อนไปที่ด้านบนสุดของ listview พฤติกรรมที่ไม่คาดคิด
Bhavik Mehta

8
    public static void setListViewHeightBasedOnChildren(ListView listView) {
    // 获取ListView对应的Adapter
    ListAdapter listAdapter = listView.getAdapter();
    if (listAdapter == null) {
        return;
    }

    int totalHeight = 0;
    for (int i = 0, len = listAdapter.getCount(); i < len; i++) { // listAdapter.getCount()返回数据项的数目
        View listItem = listAdapter.getView(i, null, listView);
        listItem.measure(0, 0); // 计算子项View 的宽高
        totalHeight += listItem.getMeasuredHeight(); // 统计所有子项的总高度
    }

    ViewGroup.LayoutParams params = listView.getLayoutParams();
    params.height = totalHeight
            + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
    // listView.getDividerHeight()获取子项间分隔符占用的高度
    // params.height最后得到整个ListView完整显示需要的高度
    listView.setLayoutParams(params);
}

คุณสามารถใช้รหัสนี้สำหรับ listview ใน scrollview


ที่จะปิดการใช้งาน Listviews ที่สร้างขึ้นในการเลื่อนหรือไม่
Zapnologica

สิ่งนี้จะทำงานListViewภายในRecyclerViewเพื่อแสดงองค์ประกอบที่มากกว่านั้น
sandalone

8

คุณสามารถแก้ไขได้ด้วยการเพิ่มandroid:fillViewport="true"ScrollView ของคุณ

<ScrollView
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:background="@color/white"
      android:fillViewport="true"
      android:scrollbars="vertical">

<ListView
      android:id="@+id/statusList"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:animationCache="false"
      android:divider="@null"
      android:scrollingCache="false"
      android:smoothScrollbar="true" />

</ScrollView>


ก่อนใช้คุณสมบัตินั้นจะมีลูกคนเดียวในมุมมองรายการของฉันที่มองเห็นได้ หลังจากใช้แล้วจะเห็นแถวหรือรายการย่อยทั้งหมด


Android: scrollingCache = "false" ไม่รองรับเวอร์ชัน Android ใหม่ที่สูงกว่า v8
เบย์

7

ไม่ต้องทำอะไรใน Parent ScrollView ทำสิ่งนี้กับลูก ListView เท่านั้น ทุกอย่างจะทำงานได้อย่างสมบูรณ์แบบ

mListView.setOnTouchListener(new View.OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                mScrollView.requestDisallowInterceptTouchEvent(true);
               int action = event.getActionMasked();
                switch (action) {
                    case MotionEvent.ACTION_UP:
                        mScrollView.requestDisallowInterceptTouchEvent(false);
                        break;
                }
                return false;
            }
        });

2
นี่ควรเป็นคำตอบที่ยอมรับได้ มันง่ายและสมาร์ท เพียงแค่ปิดการใช้งาน scrollview เมื่อคุณสัมผัส listiview และเปิดใช้งานอีกครั้งเมื่อคุณยกนิ้วของคุณ
Yunus Kulyyev

ทำงานได้อย่างสมบูรณ์แบบ หวังว่าคนอื่น ๆ จะเลื่อนลงมาที่คำตอบนี้เช่นกัน!
Kunj Mehta

6

รหัสนี้จะแก้ปัญหาของคุณหากคุณใช้เพียง ListView ในรหัส

ถ้าคุณใช้ RelativeLayout เป็น ListView ลูกกว่ารหัสนี้คืน NullPointerException ที่นี่listItem.measure (0, 0); เนื่องจาก RelativeLayout.And การแก้ปัญหาคือใส่ Relativelayout ของคุณภายใน LinearLayout และมันจะทำงานได้ดี

public static void setListViewHeightBasedOnChildren(ListView listView) {
    ListAdapter listAdapter = listView.getAdapter(); 
    if (listAdapter == null) {
        // pre-condition
        return;
    }

    int totalHeight = 0;
    for (int i = 0; i < listAdapter.getCount(); i++) {
        View listItem = listAdapter.getView(i, null, listView);
        listItem.measure(0, 0);
        totalHeight += listItem.getMeasuredHeight();
    }

    ViewGroup.LayoutParams params = listView.getLayoutParams();
    params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
    listView.setLayoutParams(params);
    listView.requestLayout();
}

หากคุณมีช่องว่างภายใน listview ของคุณคุณควรเพิ่มที่: - int padding = listView.getPaddingTop () + listView.getPaddingBottom ();
เดวิด

ใช่เค้าโครงสัมพันธ์สร้างปัญหาขณะคำนวณความสูง ขอบคุณสำหรับการอธิบายปัญหารูปแบบสัมพัทธ์
Anil Ravsaheb Ghodake

5

ฉันจะทิ้งไว้ที่นี่ในกรณีที่ทุกคนจะประสบปัญหาเดียวกัน ฉันต้องใส่ ListView ไว้ใน ScrollView ListView with header ไม่ใช่ตัวเลือกด้วยเหตุผลหลายประการ ไม่มีตัวเลือกในการใช้ LinearLayout แทน ListView ดังนั้นฉันจึงติดตามโซลูชันที่ยอมรับ แต่ใช้งานไม่ได้เพราะรายการในรายการมีรูปแบบที่ซับซ้อนที่มีหลายแถวและแต่ละรายการมุมมองมีความสูงของตัวแปร วัดความสูงไม่ถูกต้อง การแก้ปัญหาคือการวัดแต่ละรายการภายในวิธีการ ListView Adapter () ของ ListView

@Override
public View getView(int position, View view, ViewGroup parent) {
    ViewHolder holder;
    if (view == null) {
        . . .
        view.setTag(holder);
    } else holder = (ViewHolder)view.getTag();
    . . .

    // measure ListView item (to solve 'ListView inside ScrollView' problem)
    view.measure(View.MeasureSpec.makeMeasureSpec(
                    View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED),
            View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED));
    return view;
}

5

คุณสามารถใส่ ListView ใน ScrollView ได้อย่างง่ายดาย! เพียงแค่ต้องเปลี่ยนความสูงของ ListView โดยทางโปรแกรมดังนี้:

    ViewGroup.LayoutParams listViewParams = (ViewGroup.LayoutParams)listView.getLayoutParams();
    listViewParams.height = 400;
    listView.requestLayout();

มันทำงานได้อย่างสมบูรณ์แบบ!


3
นั่นคือสิ่งที่คำตอบที่ยอมรับนั้นทำแทนที่จะเป็น 400 แต่มันจะคำนวณความสูงที่แน่นอน ด้วยวิธีนี้คุณไม่ต้องเดา
Jeroen Vannevel

คุณหมายถึงเวทย์มนตร์ ต้องสูงเท่าไหร่นักพัฒนาเท่านั้นจะเลือก - 400px หรือครึ่งหนึ่งของหน้าจอ อย่างไรก็ตามถ้าคุณต้องการรับ ListView แบบเต็มหน้าจอมีวิธีง่าย ๆ ในการรับความสูงเพียงเพื่อคำนวณความสูงของหน้าจอผ่าน DisplayMetrics และใส่หมายเลขนี้ให้สูง ListView XD
Taras Okunev

4

เสร็จสิ้นหลังจาก R&D จำนวนมาก:

fragment_one.xml ควรมีลักษณะดังนี้:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/scrollViewParent"
    android:orientation="vertical" >

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

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="400dip" >

            <ListView
                android:id="@+id/listView"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

            <View
                android:id="@+id/customView"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:background="@android:color/transparent" />
        </RelativeLayout>

        <!-- Your other elements are here -->

    </LinearLayout>

</ScrollView>

ชั้น Java ของ FragmentOne.java ของคุณดูเหมือนว่า:

private ListView listView;
private View customView

onCreateView

listView = (ListView) rootView.findViewById(R.id.listView);
scrollViewParent = (ScrollView)rootView.findViewById(R.id.scrollViewParent);
customView = (View)rootView.findViewById(R.id.customView);

customView.setOnTouchListener(new View.OnTouchListener() {

            @Override
            public boolean onTouch(View v, MotionEvent event) {
                int action = event.getAction();
                switch (action) {
                    case MotionEvent.ACTION_DOWN:
                        // Disallow ScrollView to intercept touch events.
                        scrollViewParent.requestDisallowInterceptTouchEvent(true);
                        // Disable touch on transparent view
                        return false;

                    case MotionEvent.ACTION_UP:
                        // Allow ScrollView to intercept touch events.
                        scrollViewParent.requestDisallowInterceptTouchEvent(false);
                        return true;

                    case MotionEvent.ACTION_MOVE:
                        scrollViewParent.requestDisallowInterceptTouchEvent(true);
                        return false;

                    default:
                        return true;
                }
            }
        });

4

ฉันมีปัญหาที่คล้ายกันกับปัญหาที่โพสต์ต้นฉบับโดยโพสต์ - วิธีทำให้เลื่อนมุมมองรายการภายใน scrollview - และคำตอบนี้แก้ปัญหาของฉัน ปิดใช้งานการเลื่อนของ ListView ที่อยู่ใน ScrollView

ฉันไม่ได้เรียกแฟรกเมนต์ใหม่เป็นเลย์เอาต์ที่มีอยู่หรืออะไรทำนองนั้นเช่น OP กำลังทำอยู่ดังนั้นโค้ดของฉันจะมีลักษณะดังนี้:

<ScrollView
    android:id="@+id/scrollView1"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="2"
    android:fillViewport="true"
    android:gravity="top" >

 <LinearLayout
        android:id="@+id/foodItemActvity_linearLayout_fragments"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >


    <TextView
       android:id="@+id/fragment_dds_review_textView_label"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="Reviews:"
       android:textAppearance="?android:attr/textAppearanceMedium" />

   <ListView
       android:id="@+id/my_listView"
       android:layout_width="match_parent"
       android:layout_height="wrap_content">
   </ListView>

</LinearLayout>

</ScrollView>

โดยทั่วไปสิ่งที่ฉันทำคือการตรวจสอบความยาวของ listview ก่อนที่ฉันจะเรียกมันและเมื่อฉันเรียกมันว่าฉันทำให้มันเป็นความยาวนั้น ในคลาส java ของคุณใช้ฟังก์ชันนี้:

public static void justifyListViewHeightBasedOnChildren (ListView listView) {

    ListAdapter adapter = listView.getAdapter();

    if (adapter == null) {
        return;
    }
    ViewGroup vg = listView;
    int totalHeight = 0;
    for (int i = 0; i < adapter.getCount(); i++) {
        View listItem = adapter.getView(i, null, vg);
        listItem.measure(0, 0);
        totalHeight += listItem.getMeasuredHeight();
    }

    ViewGroup.LayoutParams par = listView.getLayoutParams();
    par.height = totalHeight + (listView.getDividerHeight() * (adapter.getCount() - 1));
    listView.setLayoutParams(par);
    listView.requestLayout();
}

และเรียกใช้ฟังก์ชันเช่นนี้:

justifyListViewHeightBasedOnChildren(listView);

ผลลัพธ์คือ listview ที่ไม่มี scrollbar ความยาวทั้งหมดของ listview ที่ถูกแสดงที่เลื่อนด้วย scrollbar ของ scrollview


3

ตามที่คนอื่นพูดถึงแล้วอย่าใช้ ListView ภายใน ScrollView

ในการแก้ปัญหาคุณสามารถใช้ LinearLayout แต่ยังคงรักษาความเรียบร้อย - เติม LinearLayout ของคุณด้วยอะแดปเตอร์เช่นเดียวกับที่คุณทำกับ ListView

คุณสามารถใช้คลาสนี้แทน LinearLayout ที่รองรับอะแดปเตอร์

import android.content.Context;
import android.database.DataSetObserver;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.LinearLayout;

public class AdaptableLinearLayout extends LinearLayout {

private BaseAdapter mAdapter;

private int mItemCount = 0;

private boolean mDisableChildrenWhenDisabled = false;

private int mWidthMeasureSpec;
private int mHeightMeasureSpec;


public AdaptableLinearLayout(Context context, AttributeSet attrs) {
    super(context, attrs);
    // TODO Auto-generated constructor stub
}

public BaseAdapter getAdapter() {
    return mAdapter;
}

public void setAdapter(BaseAdapter adapter) {
    mAdapter = adapter;
    adapter.registerDataSetObserver(new DataSetObserver() {
        @Override
        public void onChanged() {
            updateLayout();
            super.onChanged();
        }

        @Override
        public void onInvalidated() {
            updateLayout();
            super.onInvalidated();
        }
    });
    updateLayout();
}

private void updateLayout() {
    mItemCount = mAdapter.getCount();
    requestLayout();
    invalidate();
}

/**
 * set size for the current View
 */
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    mWidthMeasureSpec = widthMeasureSpec;
    mHeightMeasureSpec = heightMeasureSpec;

    removeAllViewsInLayout();
    for (int i = 0; i < mItemCount; i++) {
        makeAndAddView(i);
    }
}

private View makeAndAddView(int position) {
    View child;

    // Nothing found in the recycler -- ask the adapter for a view
    child = mAdapter.getView(position, null, this);

    // Position the view
    setUpChild(child, position);

    return child;

}

private void setUpChild(View child, int position) {

    ViewGroup.LayoutParams lp = child.getLayoutParams();
    if (lp == null) {
        lp = generateDefaultLayoutParams();
    }
    addViewInLayout(child, position, lp);

    // Get measure specs
    int childHeightSpec = ViewGroup.getChildMeasureSpec(mHeightMeasureSpec, getPaddingTop() + getPaddingBottom(), lp.height);
    int childWidthSpec = ViewGroup.getChildMeasureSpec(mWidthMeasureSpec, getPaddingLeft() + getPaddingRight(), lp.width);

    // Measure child
    child.measure(childWidthSpec, childHeightSpec);

    int childLeft;
    int childRight;

    // Position vertically based on gravity setting
    int childTop = getPaddingTop() + ((getMeasuredHeight() - getPaddingBottom() - getPaddingTop() - child.getMeasuredHeight()) / 2);
    int childBottom = childTop + child.getMeasuredHeight();

    int width = child.getMeasuredWidth();
    childLeft = 0;
    childRight = childLeft + width;

    child.layout(childLeft, childTop, childRight, childBottom);

    if (mDisableChildrenWhenDisabled) {
        child.setEnabled(isEnabled());
    }
}
}

สิ่งนี้จัดการการรีไซเคิลได้อย่างไร หรืออะแดปเตอร์เป็นผู้รับผิดชอบในการรีไซเคิลมุมมอง?
René M

ฉันใช้คลาสนี้เมื่อไม่นานมานี้ดังนั้นฉันคิดว่าสำหรับวัตถุประสงค์ของ dev.speed ฉันไม่ได้เพิ่มการสนับสนุนการรีไซเคิล ตามที่ฉันเห็นในรหัสตอนนี้คลาสถือว่าผู้รีไซเคิลว่างเปล่า
AAverin

3

คุณสามารถใส่ทั้งหมดลงในเค้าโครงเชิงเส้น นั่นคือสร้างเลย์เอาต์เชิงเส้นและมันจะมี 2 ลูก, scrollview และเลย์เอาต์เชิงเส้นอื่น ให้น้ำหนักกับเลย์เอาต์แล้วมาที่นี่:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="0dip" android:layout_weight="0.8">

    <LinearLayout
        android:id="@+id/seTaskActivityRoot"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/taskName" />


        <Spinner
            android:id="@+id/seTaskPrioritiesSP"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1" />

        <TextView
            android:id="@+id/textView4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/taskTargetInNumeric" />

        <Spinner
            android:id="@+id/seTaskUnitsSP"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1" />

        <TextView
            android:id="@+id/textView6"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/newTaskCurrentStatus" />

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:ems="10"
            android:hint="@string/addTaskCurrentStatus"
            android:inputType="numberDecimal" />


    </LinearLayout>
</ScrollView>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:orientation="vertical" android:layout_weight="0.2">

    <TextView
        android:id="@+id/textView8"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="TextView" />

    <ListView
        android:id="@+id/logList"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </ListView>

</LinearLayout>


3

คุณไม่ควรใช้ ScrollView กับ ListView เนื่องจาก ListView จะดูแลการเลื่อนแนวตั้งของตัวเอง สิ่งสำคัญที่สุดคือการทำเช่นนี้เอาชนะการปรับแต่งที่สำคัญทั้งหมดใน ListView เพื่อจัดการกับรายการขนาดใหญ่เนื่องจากมันบังคับให้ ListView แสดงรายการทั้งหมดของรายการเพื่อเติมเต็มคอนเทนเนอร์ infinite ที่จัดทำโดย ScrollView อย่างมีประสิทธิภาพ

http://developer.android.com/reference/android/widget/ScrollView.html


3

ความต้องการของฉันคือการรวม ListView ของรายการที่มีขนาดเท่ากันภายใน ScrollView ฉันพยายามแก้ไขปัญหาอื่น ๆ ที่แสดงไว้ที่นี่ไม่มีใครดูเหมือนขนาด ListView อย่างถูกต้อง (พื้นที่น้อยเกินไปหรือมากเกินไป) นี่คือสิ่งที่ทำงานสำหรับฉัน:

    public static void expandListViewHeight(ListView listView) {
    ListAdapter listAdapter = listView.getAdapter();
    if (listAdapter == null)
        return;

    ViewGroup.LayoutParams params = listView.getLayoutParams();
    listView.measure(0, 0);
    params.height = listView.getMeasuredHeight() * listAdapter.getCount() + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
    listView.setLayoutParams(params);
}

หวังว่านี่จะช่วยใครซักคน


2

อย่าใส่ListViewข้างในของScrollView! คุณสามารถค้นหาข้อมูลเพิ่มเติมเกี่ยวกับหัวข้อที่เกี่ยวกับGoogle ในกรณีของคุณใช้LinearLayoutแทนListViewและเพิ่มองค์ประกอบโดยทางโปรแกรม


3
โอ้ฉันเข้าใจแล้วฉันยังคงใช้แนวคิดที่คล้ายกันของอะแดปเตอร์เพื่อเติมเต็ม linearlayout ได้หรือไม่?
Zapnologica

2

ปรับปรุง

<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:fillViewport="true"
android:gravity="top" >

<LinearLayout
    android:id="@+id/foodItemActvity_linearLayout_fragments"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
</LinearLayout>

ถึง

<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2"
android:fillViewport="true"
android:gravity="top" >

<LinearLayout
    android:id="@+id/foodItemActvity_linearLayout_fragments"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
</LinearLayout>

จุดนี่คือคุณกำลังพยายามตั้งความสูงเป็น 0dp (คงที่)


นั่นคือน้ำหนักจะมีผลกับมัน
Zapnologica

คุณต้องการให้ภาพผลิตภัณฑ์และมุมมองข้อความด้านซ้ายเลื่อนขึ้นหรือไม่? ถ้าอย่างนั้นคุณควรออกสองรายการนี้ในมุมมอง Scroll ของคุณตามที่ฉันเห็นในขณะนี้พวกเขาไม่ใช่
Rajnish Mishra

ขณะนี้พวกเขาอยู่ใน scrollView ขณะที่ฉันเพิ่มโปรแกรมเหล่านั้นลงในเค้าโครงเชิงเส้นซึ่งอยู่ภายใน scrollview หากตรรกะของฉันถูกต้องลูก ๆ ของ linearlayout ก็ควรที่จะเลื่อน scrollview ด้วย
Zapnologica

2

พบวิธีแก้ปัญหาสำหรับ scrollview -> viewpager -> FragmentPagerAdapter -> Fragment -> dynamic listview แต่ฉันไม่ใช่ผู้เขียน มีข้อบกพร่องบางอย่าง แต่อย่างน้อยก็ใช้งานได้

public class CustomPager extends ViewPager {

    private View mCurrentView;

    public CustomPager(Context context) {
        super(context);
    }

    public CustomPager(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        if (mCurrentView == null) {
            super.onMeasure(widthMeasureSpec, heightMeasureSpec);
            return;
        }
        int height = 0;
        mCurrentView.measure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
        int h = mCurrentView.getMeasuredHeight();
        if (h > height) height = h;
        heightMeasureSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);

        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    }

    public void measureCurrentView(View currentView) {
        mCurrentView = currentView;
        this.post(new Runnable() {
            @Override
            public void run() {
                requestLayout();
            }
        });
    }

    public int measureFragment(View view) {
        if (view == null)
            return 0;

        view.measure(0, 0);
        return view.getMeasuredHeight();
    }
}


public class MyPagerAdapter extends FragmentPagerAdapter {

    private List<Fragment> fragments;
    private int mCurrentPosition = -1;


    public MyPagerAdapter(FragmentManager fm) {
        super(fm);//or u can set them separately, but dont forget to call notifyDataSetChanged()
        this.fragments = new ArrayList<Fragment>();
        fragments.add(new FirstFragment());
        fragments.add(new SecondFragment());
        fragments.add(new ThirdFragment());
        fragments.add(new FourthFragment());
    }

    @Override
    public void setPrimaryItem(ViewGroup container, int position, Object object) {
        super.setPrimaryItem(container, position, object);
        if (position != mCurrentPosition) {
            Fragment fragment = (Fragment) object;
            CustomPager pager = (CustomPager) container;
            if (fragment != null && fragment.getView() != null) {
                mCurrentPosition = position;
                pager.measureCurrentView(fragment.getView());
            }
        }
    }

    @Override
    public Fragment getItem(int position) {
        return fragments.get(position);
    }

    @Override
    public int getCount() {
        return fragments.size();
    }
}

เค้าโครงของแฟรกเมนต์สามารถเป็นอะไรก็ได้

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:orientation="vertical"
    android:layout_height="match_parent" tools:context="nevet.me.wcviewpagersample.FirstFragment">


    <ListView
        android:id="@+id/lv1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#991199"/>
</LinearLayout>

จากนั้นอยู่ที่ไหนซักแห่ง

lv = (ListView) view.findViewById(R.id.lv1);
        lv.setAdapter(arrayAdapter);
        setListViewHeightBasedOnChildren(lv);
    }

    public static void setListViewHeightBasedOnChildren(ListView listView) {
        ListAdapter listAdapter = listView.getAdapter();
        if (listAdapter == null)
            return;

        int desiredWidth = View.MeasureSpec.makeMeasureSpec(listView.getWidth(),
                View.MeasureSpec.UNSPECIFIED);
        int totalHeight = 0;
        View view = null;
        for (int i = 0; i < listAdapter.getCount(); i++) {
            view = listAdapter.getView(i, view, listView);
            if (i == 0)
                view.setLayoutParams(new ViewGroup.LayoutParams(desiredWidth,
                        LinearLayout.LayoutParams.WRAP_CONTENT));

            view.measure(desiredWidth, View.MeasureSpec.UNSPECIFIED);
            totalHeight += view.getMeasuredHeight();
        }
        ViewGroup.LayoutParams params = listView.getLayoutParams();
        params.height = totalHeight
                + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
        listView.setLayoutParams(params);
        listView.requestLayout();
    }

2
  • ไม่สามารถใช้ Scroll-view ภายใน List-view เนื่องจาก List-view มีคุณสมบัติการเลื่อนอยู่แล้ว
  • ในการใช้ list-view ภายใน Scroll-view คุณสามารถทำตามขั้นตอนเหล่านี้ซึ่งเหมาะกับฉัน:

    1) สร้างไฟล์จาวาNonScrollListViewที่ปิดใช้งานคุณสมบัติการเลื่อนเริ่มต้นของ list-view และรหัสด้านล่าง

    package your-package-structure;
    
    import android.content.Context;
    import android.util.AttributeSet;
    import android.view.ViewGroup;
    import android.widget.ListView;
    
    public class NonScrollListView extends ListView {
    
      public NonScrollListView(Context context) {
          super(context);
      }
      public NonScrollListView(Context context, AttributeSet attrs) {
          super(context, attrs);
      }
      public NonScrollListView(Context context, AttributeSet attrs, int defStyle) {
          super(context, attrs, defStyle);
      }
      @Override
      public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int heightMeasureSpec_custom = MeasureSpec.makeMeasureSpec(
                Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, heightMeasureSpec_custom);
        ViewGroup.LayoutParams params = getLayoutParams();
        params.height = getMeasuredHeight();
      }
    }

    2) สร้างไฟล์ xml ซึ่งมีNestedScrollViewและภายในใช้NonScrollListViewสำหรับรายการของคุณ นี่จะทำให้ทั้งหน้าจอของคุณเลื่อนไปพร้อมกับมุมมอง

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:orientation="vertical">
                <ViewFlipper
    
                    android:id="@+id/v_flipper"
                    android:layout_width="match_parent"
                    android:layout_height="130dp">
                </ViewFlipper>
                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
    
                    android:text="SHOP"
                    android:textSize="15dp"
                    android:textStyle="bold"
                    android:gravity="center"
                    android:padding="5dp"
                    android:layout_marginTop="15dp"
                    android:layout_marginBottom="5dp"
                    android:layout_marginLeft="8dp"
                    android:layout_marginRight="8dp"/>
                <View
                    android:layout_width="match_parent"
                    android:layout_height="1dp"
    
                    android:layout_marginBottom="8dp"
                    android:layout_marginLeft="8dp"
                    android:layout_marginRight="8dp"
                    android:background="#ddd"/>
            </LinearLayout>
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:layout_weight="1"
                >
                <com.abc.xyz.NonScrollListView
                    android:id="@+id/listview"
    
                    android:divider="@null"
                    android:layout_width="match_parent"
                    android:layout_marginBottom="10dp"
                    android:layout_height="match_parent"
                    android:padding="8dp">
                </com.abc.xyz.NonScrollListView>
            </LinearLayout>
    
           <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
    
                android:gravity="bottom">
                <include layout="@layout/footer" />
            </LinearLayout>
    
        </LinearLayout>

    3) ขณะนี้อยู่ในระดับ Java เช่น home.java กำหนดแทนNonScrollListViewListview

    package comabc.xyz.landscapeapp;
    import android.content.Intent;
    import android.support.annotation.NonNull;
    import android.support.annotation.Nullable;
    import android.support.v4.app.Fragment;
    import android.os.Bundle;
    import android.support.v4.app.FragmentTransaction;
    import android.util.Log;
    import android.view.LayoutInflater;
    import android.view.View;
    import android.view.ViewGroup;
    import android.widget.AdapterView;
    import android.widget.Button;
    import android.widget.ImageView;
    
    import android.widget.ListView;
    import android.widget.Toast;
    import android.widget.Toolbar;
    import android.widget.ViewFlipper;

    บ้านระดับสาธารณะขยายส่วน {int pos = 0; ViewFlipper v_flipper;

    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.activity_home, container, false);
        return view;
    }
    
    @Override
    public void onViewCreated(@NonNull final View view, @Nullable Bundle savedInstanceState) {
        NonScrollListView listView = (NonScrollListView) view.findViewById(R.id.listview);
        customAdapter customAdapter = new customAdapter(getActivity());
        listView.setAdapter(customAdapter);
        listView.setFocusable(false);
    
        customAdapter.notifyDataSetChanged();
        listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                Log.d("listview click", "onItemClick: ");
               /* FragmentTransaction fr = getFragmentManager().beginTransaction().replace(R.id.fragment_container, new productdisplay());
    
                fr.putExtra("Position", position);
                fr.addToBackStack("tag");
                fr.commit();*/
                Intent intent = new Intent(getActivity(), productdisplay.class);
                intent.putExtra("Position", position);
                startActivity(intent);
            }
        });
    
    
        //image slider
        int images[] = {R.drawable.slide1, R.drawable.slide2, R.drawable.slide3};
        v_flipper = view.findViewById(R.id.v_flipper);
        for (int image : images) {
            flipperImages(image);
    
        }
    }
    
    private void flipperImages(int image) {
        ImageView imageView = new ImageView(getActivity());
        imageView.setBackgroundResource(image);
    
        v_flipper.addView(imageView);
        v_flipper.setFlipInterval(4000);
        v_flipper.setAutoStart(true);
    
        v_flipper.setInAnimation(getActivity(), android.R.anim.slide_in_left);
        v_flipper.setOutAnimation(getActivity(), android.R.anim.slide_out_right);
    }
    }

    หมายเหตุ: ฉันใช้Fragmentsที่นี่


1

ตกลงนี่คือคำตอบของฉัน วิธีการที่จะแก้ไขความสูงของ ListView นั้นถูกปิดลงอย่างเพียงพอ แต่ไม่สมบูรณ์แบบ ในกรณีที่สินค้าส่วนใหญ่มีความสูงเท่ากันก็สามารถใช้งานได้ดี แต่ในกรณีที่ไม่เป็นเช่นนั้นมีปัญหาใหญ่ ฉันลองมาหลายครั้งและเมื่อฉันใส่ค่าของ listItem.getMeasureHeight และ listItem.getMeasuerWidth ลงในบันทึกฉันเห็นค่าความกว้างแตกต่างกันมากซึ่งไม่ได้คาดหวังไว้ที่นี่เนื่องจากรายการทั้งหมดใน ListView เดียวกันควร มีความกว้างเท่ากัน และมีข้อบกพร่องไป:

บางส่วนใช้การวัด (0, 0) ซึ่งทำให้มุมมองไม่ได้ถูกผูกไว้ทั้งในทิศทางและความกว้างเรียกใช้แบบไวด์ บางคนพยายามรับความกว้างของ listView แต่กลับเป็น 0 โดยไม่มีความหมาย

เมื่อฉันอ่านเพิ่มเติมเกี่ยวกับวิธีที่ Android แสดงมุมมองฉันรู้ว่าความพยายามทั้งหมดนี้ไม่สามารถหาคำตอบที่ฉันค้นหาได้เว้นแต่ว่าฟังก์ชั่นเหล่านี้จะทำงานหลังจากดู

เวลานี้ฉันใช้ getViewTreeObserver บน ListView ที่ฉันต้องการแก้ไขความสูงแล้วเพิ่ม addOnGlobalLayoutListener ภายในเมธอดนี้ฉันประกาศ OnGlobalLayoutListener ใหม่ซึ่งคราวนี้ getWidth ส่งคืนความกว้างที่แท้จริงของ ListView

private void getLayoutWidth(final ListView lv, final int pad){
        //final ArrayList<Integer> width = new ArrayList<Integer>();

        ViewTreeObserver vto = lv.getViewTreeObserver();
        vto.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
            @Override
            public void onGlobalLayout() {
                lv.getViewTreeObserver().removeOnGlobalLayoutListener(this);
                //width.add(layout.getMeasuredWidth());
                int width = lv.getMeasuredWidth();
                ListUtils.setDynamicHeight(lv, width, pad);
            }
        });
    }

public static class ListUtils {
        //private static final int UNBOUNDED = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);
        public static void setDynamicHeight(ListView mListView, int width, int pad) {
            ListAdapter mListAdapter = mListView.getAdapter();
            mListView.getParent();
            if (mListAdapter == null) {
                // when adapter is null
                return;
            }
            int height = 0;


            int desiredWidth = View.MeasureSpec.makeMeasureSpec(width - 2*pad, View.MeasureSpec.EXACTLY);
            for (int i = 0; i < mListAdapter.getCount(); i++) {
                View listItem = mListAdapter.getView(i, null, mListView);

                listItem.measure(desiredWidth, View.MeasureSpec.UNSPECIFIED);
                //listItem.measure(UNBOUNDED, UNBOUNDED);
                height += listItem.getMeasuredHeight() + 2*pad;
                Log.v("ViewHeight :", mListAdapter.getClass().toString() + " " + listItem.getMeasuredHeight() + "--" + listItem.getMeasuredWidth());
            }
            ViewGroup.LayoutParams params = mListView.getLayoutParams();
            params.height = height + (mListView.getDividerHeight() * (mListAdapter.getCount() - 1));
            mListView.setLayoutParams(params);
            mListView.requestLayout();
        }
    }

แผ่นค่าเป็นช่องว่างภายในที่ฉันตั้งไว้ในเค้าโครง ListView


1

หากด้วยเหตุผลบางอย่างที่คุณไม่ต้องการใช้addHeaderViewและaddFooterViewเช่นเมื่อคุณมีหลายรายการความคิดที่ดีคือการนำListAdapterไปใช้ใหม่เพื่อเติมข้อมูลอย่างง่ายLinearLayoutดังนั้นจึงไม่มีฟังก์ชั่นการเลื่อน

หากคุณมีแฟรกเมนต์ทั้งหมดที่มาจากListFragmentและต้องการแปลงเป็นLinearLayoutแฟรกเมนต์ที่คล้ายกันโดยง่ายโดยไม่ต้องเลื่อนแทน (เช่นเพื่อใส่ไว้ใน ScrollView) คุณสามารถใช้แฟรกเมนต์อะแด็ปเตอร์ดังนี้:

// converts listFragment to linearLayout (no scrolling)
// please call init() after fragment is inflated to set listFragment to convert
public class ListAsArrayFragment extends Fragment {
    public ListAsArrayFragment() {}

    private ListFragment mListFragment;
    private LinearLayout mRootView;


    // please call me!
    public void init(Activity activity, ListFragment listFragment){
        mListFragment = listFragment;
        mListFragment.onAttach(activity);
        mListFragment.getListAdapter().registerDataSetObserver(new DataSetObserver() {
            @Override
            public void onChanged() {
                super.onChanged();
                refreshView();
            }
        });
    }


    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // create an empty vertical LinearLayout as the root view of this fragment
        mRootView = new LinearLayout(getActivity());
        mRootView.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
        mRootView.setOrientation(LinearLayout.VERTICAL);
        return mRootView;
    }

    // reusing views for performance
    // todo: support for more than one view type
    ArrayList<View> mViewsToReuse = new ArrayList<>();
    ArrayList<View> mCurrentViews = new ArrayList<>();

    // re-add views to linearLayout
    void refreshView(){

        // remove old views from linearLayout and move them to mViewsToReuse
        mRootView.removeAllViews();
        mViewsToReuse.addAll(mCurrentViews);
        mCurrentViews.clear();

        // create new views
        for(int i=0; i<mListFragment.getListAdapter().getCount(); ++i){
            View viewToReuse = null;
            if(!mViewsToReuse.isEmpty()){
                viewToReuse = mViewsToReuse.get(mViewsToReuse.size()-1);
                mViewsToReuse.remove(mViewsToReuse.size()-1);
            }
            final View view = mListFragment.getListAdapter().getView(i, viewToReuse, mRootView);
            ViewGroup.LayoutParams oldParams = view.getLayoutParams();
            view.setLayoutParams(new LinearLayout.LayoutParams(oldParams.width, oldParams.height));
            final int finalI = i;

            // pass click events to listFragment
            view.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    mListFragment.onListItemClick(null, view, finalI, finalI);
                }
            });
            mRootView.addView(view);
            mCurrentViews.add(view);
        }
    }

นอกจากนี้คุณยังอาจต้องการส่งต่อonCreate, onPause, onResumeฯลฯ ส่วนเดิมขึ้นอยู่กับความต้องการของคุณหรือพยายามมรดกแทนขององค์ประกอบ ( แต่แทนที่วิธีการบางอย่างเพื่อให้ชิ้นส่วนเดิมไม่ได้แนบจริงลำดับชั้นรูปแบบ); แต่ฉันต้องการแยกส่วนดั้งเดิมออกให้มากที่สุดเพราะเราต้องการแยกมันListAdapterออกมา ถ้าคุณเรียกส่วนเดิมsetListAdapterในonAttachที่อาจพอ

ต่อไปนี้เป็นวิธีใช้ListAsArrayFragmentเพื่อรวมOriginalListFragmentโดยไม่ต้องเลื่อน ในกิจกรรมหลักของonCreate:

ListAsArrayFragment fragment = (ListAsArrayFragment) getFragmentManager().findFragmentById(R.id.someFragmentId);
OriginalListFragment originalFragment = new OriginalListFragment();
fragment.init(this, originalFragment);

// now access originalFragment.getListAdapter() to modify list entries
// and remember to call notifyDatasetChanged()

1

พบวิธีแก้ปัญหาสำหรับ scrollview -> viewpager -> FragmentPagerAdapter -> Fragment -> dynamic listview แต่ฉันไม่ใช่ผู้เขียน

public class CustomPager extends ViewPager {

    private View mCurrentView;

    public CustomPager(Context context) {
        super(context);
    }

    public CustomPager(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        if (mCurrentView == null) {
            super.onMeasure(widthMeasureSpec, heightMeasureSpec);
            return;
        }
        int height = 0;
        mCurrentView.measure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
        int h = mCurrentView.getMeasuredHeight();
        if (h > height) height = h;
        heightMeasureSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);

        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    }

    public void measureCurrentView(View currentView) {
        mCurrentView = currentView;
        this.post(new Runnable() {
            @Override
            public void run() {
                requestLayout();
            }
        });
    }

    public int measureFragment(View view) {
        if (view == null)
            return 0;

        view.measure(0, 0);
        return view.getMeasuredHeight();
    }
}


public class MyPagerAdapter extends FragmentPagerAdapter {

    private List<Fragment> fragments;
    private int mCurrentPosition = -1;


    public MyPagerAdapter(FragmentManager fm) {
        super(fm);//or u can set them separately, but dont forget to call notifyDataSetChanged()
        this.fragments = new ArrayList<Fragment>();
        fragments.add(new FirstFragment());
        fragments.add(new SecondFragment());
        fragments.add(new ThirdFragment());
        fragments.add(new FourthFragment());
    }

    @Override
    public void setPrimaryItem(ViewGroup container, int position, Object object) {
        super.setPrimaryItem(container, position, object);
        if (position != mCurrentPosition) {
            Fragment fragment = (Fragment) object;
            CustomPager pager = (CustomPager) container;
            if (fragment != null && fragment.getView() != null) {
                mCurrentPosition = position;
                pager.measureCurrentView(fragment.getView());
            }
        }
    }

    @Override
    public Fragment getItem(int position) {
        return fragments.get(position);
    }

    @Override
    public int getCount() {
        return fragments.size();
    }
}

เค้าโครงของแฟรกเมนต์สามารถเป็นอะไรก็ได้

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:orientation="vertical"
    android:layout_height="match_parent" tools:context="nevet.me.wcviewpagersample.FirstFragment">


    <ListView
        android:id="@+id/lv1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#991199"/>
</LinearLayout>

จากนั้นอยู่ที่ไหนซักแห่ง

 lv = (ListView) view.findViewById(R.id.lv1);
        lv.setAdapter(arrayAdapter);
        setListViewHeightBasedOnChildren(lv);
    }

    public static void setListViewHeightBasedOnChildren(ListView listView) {
        ListAdapter listAdapter = listView.getAdapter();
        if (listAdapter == null)
            return;

        int desiredWidth = View.MeasureSpec.makeMeasureSpec(listView.getWidth(),
                View.MeasureSpec.UNSPECIFIED);
        int totalHeight = 0;
        View view = null;
        for (int i = 0; i < listAdapter.getCount(); i++) {
            view = listAdapter.getView(i, view, listView);
            if (i == 0)
                view.setLayoutParams(new ViewGroup.LayoutParams(desiredWidth,
                        LinearLayout.LayoutParams.WRAP_CONTENT));

            view.measure(desiredWidth, View.MeasureSpec.UNSPECIFIED);
            totalHeight += view.getMeasuredHeight();
        }
        ViewGroup.LayoutParams params = listView.getLayoutParams();
        params.height = totalHeight
                + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
        listView.setLayoutParams(params);
        listView.requestLayout();
    }

1

ใช้ ListView นี้ทำงานสำหรับฉัน

   package net.londatiga.android.widget;

      import android.util.AttributeSet;
      import android.view.ViewGroup;
      import android.widget.ListView;
      import android.content.Context;

   public class ExpandableHeightListView extends ListView
      {

    boolean expanded = false;

      public ExpandableHeightListView(Context context)
    {
    super(context);
}

public ExpandableHeightListView(Context context, AttributeSet attrs)
{
    super(context, attrs);
}

public ExpandableHeightListView(Context context, AttributeSet attrs,
        int defStyle)
{
    super(context, attrs, defStyle);
}

public boolean isExpanded()
{
    return expanded;
}

@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
    // HACK! TAKE THAT ANDROID!
    if (isExpanded())
    {
        // Calculate entire height by providing a very large height hint.
        // But do not use the highest 2 bits of this integer; those are
        // reserved for the MeasureSpec mode.
        int expandSpec = MeasureSpec.makeMeasureSpec(
                Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, expandSpec);

        ViewGroup.LayoutParams params = getLayoutParams();
        params.height = getMeasuredHeight();
    }
    else
    {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    }
}

public void setExpanded(boolean expanded)
{
    this.expanded = expanded;
}
}

และใน xml

            <com.pakagename.ExpandableHeightListView
                android:id="@+id/expandableHeightListView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >
            </com.Example.ExpandableHeightListView>

และในกิจกรรมหลัก

  ExpandableHeightListView listView = new ExpandableHeightListView(this);
    listview=(ExpandableHeightListView)findViewById(R.id.expandableHeightListView);
   listView.setAdapter(adapter); //set your adaper
   listView.setExpanded(true);

อ้างถึงบทความนี้สำหรับข้อมูลเพิ่มเติมและเพื่อทราบวิธีการเก็บ gridview ภายในมุมมองเลื่อน


1

ใน xml:

<com.example.util.NestedListView
                    android:layout_marginTop="10dp"
                    android:id="@+id/listview"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:divider="@null"

                    android:layout_below="@+id/rl_delivery_type" >
                </com.example.util.NestedListView>

ใน Java:

public class NestedListView extends ListView implements View.OnTouchListener, AbsListView.OnScrollListener {

    private int listViewTouchAction;
    private static final int MAXIMUM_LIST_ITEMS_VIEWABLE = 99;

    public NestedListView(Context context, AttributeSet attrs) {
        super(context, attrs);
        listViewTouchAction = -1;
        setOnScrollListener(this);
        setOnTouchListener(this);
    }

    @Override
    public void onScroll(AbsListView view, int firstVisibleItem,
                         int visibleItemCount, int totalItemCount) {
        if (getAdapter() != null && getAdapter().getCount() > MAXIMUM_LIST_ITEMS_VIEWABLE) {
            if (listViewTouchAction == MotionEvent.ACTION_MOVE) {
                scrollBy(0, -1);
            }
        }
    }

    @Override
    public void onScrollStateChanged(AbsListView view, int scrollState) {
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);

        int newHeight = 0;
        final int heightMode = MeasureSpec.getMode(heightMeasureSpec);
        int heightSize = MeasureSpec.getSize(heightMeasureSpec);
        if (heightMode != MeasureSpec.EXACTLY) {
            ListAdapter listAdapter = getAdapter();
            if (listAdapter != null && !listAdapter.isEmpty()) {
                int listPosition = 0;
                for (listPosition = 0; listPosition < listAdapter.getCount()
                        && listPosition < MAXIMUM_LIST_ITEMS_VIEWABLE; listPosition++) {
                    View listItem = listAdapter.getView(listPosition, null, this);
                    //now it will not throw a NPE if listItem is a ViewGroup instance
                    if (listItem instanceof ViewGroup) {
                        listItem.setLayoutParams(new LayoutParams(
                                LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
                    }
                    listItem.measure(widthMeasureSpec, heightMeasureSpec);
                    newHeight += listItem.getMeasuredHeight();
                }
                newHeight += getDividerHeight() * listPosition;
            }
            if ((heightMode == MeasureSpec.AT_MOST) && (newHeight > heightSize)) {
                if (newHeight > heightSize) {
                    newHeight = heightSize;
                }
            }
        } else {
            newHeight = getMeasuredHeight();
        }
        setMeasuredDimension(getMeasuredWidth(), newHeight);
    }

    @Override
    public boolean onTouch(View v, MotionEvent event) {
        if (getAdapter() != null && getAdapter().getCount() > MAXIMUM_LIST_ITEMS_VIEWABLE) {
            if (listViewTouchAction == MotionEvent.ACTION_MOVE) {
                scrollBy(0, 1);
            }
        }
        return false;
    }
}

0

เพียงแค่ตั้งค่าความสูงที่ต้องการในแอตทริบิวต์ listview height ภายใน scrollview หลัก มันจะเลื่อนไปพร้อมกับรายการย่อยของผู้ปกครองคนอื่น


0

สิ่งนี้ใช้ได้สำหรับฉัน ( link1 , link2 ):

  • คุณสร้าง ListView แบบกำหนดเองซึ่งไม่สามารถเลื่อนได้

    public class NonScrollListView extends ListView {
    
            public NonScrollListView(Context context) {
                super(context);
            }
            public NonScrollListView(Context context, AttributeSet attrs) {
                super(context, attrs);
            }
            public NonScrollListView(Context context, AttributeSet attrs, int defStyle) {
                super(context, attrs, defStyle);
            }
            @Override
            public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
                int heightMeasureSpec_custom = View.MeasureSpec.makeMeasureSpec(
                        Integer.MAX_VALUE >> 2, View.MeasureSpec.AT_MOST);
                super.onMeasure(widthMeasureSpec, heightMeasureSpec_custom);
                ViewGroup.LayoutParams params = getLayoutParams();
                params.height = getMeasuredHeight();
            }
        }
  • ในไฟล์เลย์เอาต์ของคุณ

    <ScrollView 
     xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true">
    
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >
    
            <!-- com.Example Changed with your Package name -->
    
            <com.thedeveloperworldisyours.view.NonScrollListView
                android:id="@+id/lv_nonscroll_list"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >
            </com.thedeveloperworldisyours.view.NonScrollListView>
    
            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/lv_nonscroll_list" >
    
                <!-- Your another layout in scroll view -->
    
            </RelativeLayout>
        </RelativeLayout>
    
    </ScrollView>
  • สร้างวัตถุของ customListview ของคุณแทน ListView เช่น:

     NonScrollListView non_scroll_list = (NonScrollListView) findViewById(R.id.lv_nonscroll_list);

0

เพียงเรียกใช้ฟังก์ชันนี้หลังจากกำหนดอะแดปเตอร์ให้กับ listview

public static void setListViewHeightBasedOnChildren
            (ListView listView) {
        ListAdapter listAdapter = listView.getAdapter();
        if (listAdapter == null) return;

        int desiredWidth = View.MeasureSpec.makeMeasureSpec(listView.getWidth(),
                View.MeasureSpec.UNSPECIFIED);
        int totalHeight = 0;
        View view = null;
        for (int i = 0; i < listAdapter.getCount(); i++) {
            view = listAdapter.getView(i, view, listView);
            if (i == 0) view.setLayoutParams(new
                    ViewGroup.LayoutParams(desiredWidth,
                    ViewGroup.LayoutParams.WRAP_CONTENT));

            view.measure(desiredWidth, View.MeasureSpec.UNSPECIFIED);
            totalHeight += view.getMeasuredHeight();
        }

        ViewGroup.LayoutParams params = listView.getLayoutParams();

        params.height = totalHeight + (listView.getDividerHeight() *
                (listAdapter.getCount() - 1));

        listView.setLayoutParams(params);
        listView.requestLayout();
    } 

-1
listView.setOnTouchListener(new View.OnTouchListener() {

@Override
public boolean onTouch(View v, MotionEvent event) {
    scrollView.requestDisallowInterceptTouchEvent(true);

    int action = event.getActionMasked();

    switch (action) {
        case MotionEvent.ACTION_UP:
            scrollView.requestDisallowInterceptTouchEvent(false);
            break;
    }

    return false;
}
});

-1

รหัสที่ดีที่สุด

 <android.support.v4.widget.NestedScrollView
    android:id="@+id/scrollView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/btmlyt"
    android:layout_below="@+id/deshead_tv">

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

    <TextView
        android:id="@+id/des_tv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/btmlyt"
        android:background="@android:color/white"
        android:paddingLeft="3dp"
        android:paddingRight="3dp"
        android:scrollbars="vertical"
        android:paddingTop="3dp"
        android:text="description"
        android:textColor="@android:color/black"
        android:textSize="18sp" />
    </LinearLayout>

</android.support.v4.widget.NestedScrollView>
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.