ฉันสามารถใช้เพจเจอร์มุมมองกับมุมมองได้หรือไม่ (ไม่ใช่กับส่วนย่อย)


131

ฉันใช้ViewPagerสำหรับการปัดระหว่างFragmentsแต่ฉันสามารถใช้ViewPagerเพื่อปัดระหว่างViewsเลย์เอาต์ XML แบบธรรมดาได้หรือไม่

นี่คือหน้าของฉันAdapterสำหรับ ViewPager ซึ่งใช้ในการปัดระหว่าง Fragments:

import java.util.List;

import com.app.name.fragments.TipsFragment;

import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.app.FragmentTransaction;
import android.view.ViewGroup;

public class PageAdapter extends FragmentPagerAdapter {

    /**
     *
     */
    List<Fragment> fragments;
    public PageAdapter(FragmentManager fm,List<Fragment> frags) {
        super(fm);
        fragments = frags;

    }

    @Override
    public Fragment getItem(int arg0) {
        // TODO Auto-generated method stub
        return TipsFragment.newInstance(0, 0);
    }

    @Override
    public int getCount() {
        // TODO Auto-generated method stub
        return 4;
    }

    @Override
    public void destroyItem(ViewGroup container, int position, Object object) {
        FragmentManager manager = ((Fragment) object).getFragmentManager();
        FragmentTransaction trans = manager.beginTransaction();
        trans.remove((Fragment) object);
        trans.commit();

        super.destroyItem(container, position, object);
    }

}

และนี่คือส่วนปลายของฉัน:

public class TipsFragment extends Fragment
{
    public static TipsFragment newInstance(int image,int content)
    {
        TipsFragment fragment = new TipsFragment();
        return fragment;
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.tip_layout, null);
        return view;
    }
}

ฉันจะแก้ไขโค้ดให้ทำงานกับ Views แทน Fragment ได้อย่างไร


ลองดูตัวอย่างนี้stackoverflow.com/a/37916222/3496570
Zar E Ahmer

ทำไมไม่ใช้ชิ้นส่วน? เราจะบรรลุหรือสูญเสียอะไรหากเราใช้หรือไม่ใช้ชิ้นส่วน?
Eftekhari

@Eftekhari Fragments => Complex LifeCycle => More Bugs => Chaos
Harshil Pansare

1
@HarshilPansare ใช่ฉันผ่านภัยพิบัติเหล่านี้ทั้งหมดหลังจากที่ฉันถามคำถามนี้ในเดือนกุมภาพันธ์และฉันจะไม่ใช้ชิ้นส่วนในโครงการของฉันอีกต่อไป ฉันไม่มีทางเลือกอื่นนอกจากทำความสะอาดชิ้นส่วนทั้งหมดตั้งแต่ViewPagerวันonDestroyนี้ดังนั้นในonResumeกิจกรรมจะไม่จำเป็นต้องดึงชิ้นส่วนทั้ง 3 ชิ้นที่อาจไม่มีอีกต่อไป แค่อยากจะพูดถึงปัญหาอย่างใดอย่างหนึ่ง
Eftekhari

ไชโยกับชีวิตที่ปราศจากเศษเสี้ยว!
Harshil Pansare

คำตอบ:


95

คุณต้องลบล้างสองวิธีนี้แทนgetItem():

@Override
public Object instantiateItem(ViewGroup collection, int position) {
    View v = layoutInflater.inflate(...);
    ...
    collection.addView(v,0);
    return v;
}

@Override
public void destroyItem(ViewGroup collection, int position, Object view) {
    collection.removeView((View) view);
}

5
อย่างดี .. ช่วยฉันได้มาก ... ฉันขยาย PageAdapter แทน FragmentPageAdapter ........ ตอนนี้มันใช้งานได้ดี .....
ranjith

3
สำหรับตัวอย่างการทำงานที่สมบูรณ์โปรดดูรหัสที่พบในคำถามนี้: stackoverflow.com/q/7263291
Tiago

7
ด้วยความอยากรู้อยากเห็นทำไมต้องใช้ addView อะแด็ปเตอร์แฟรกเมนต์เพิ่งขอให้มันส่งคืนมุมมอง
Amit Gupta

2
คุณไม่จำเป็นต้องแคสต์ViewPagerเลยในขณะที่คุณกำลังจัดการกับViewGroupอินเทอร์เฟซ
Dori

2
@AmitGupta คุณต้องเพิ่มมุมมองลงในคอนเทนเนอร์เนื่องจากคุณอาจไม่ได้คืนมุมมองที่นี่ instantiateItem ต้องส่งคืนวัตถุที่เกี่ยวข้องกับมุมมองนั้นซึ่งอาจเป็นวัตถุอื่นได้หากคุณต้องการ มันเป็นกุญแจสำคัญ ไม่ว่าคุณจะส่งคืนอะไรคุณเพียงแค่ตรวจสอบให้แน่ใจว่าการใช้งาน isViewFromObject ของคุณสามารถจับคู่สองสิ่งนี้ได้ซึ่งเป็นกุญแจสำคัญในการดู อย่างไรก็ตามการใช้งานที่พบบ่อยที่สุดคือเพียงแค่คืนมุมมองเป็นคีย์เช่นกัน FragmentPageAdapter จัดการสิ่งสำคัญเพื่อดูทั้งหมดให้คุณและขอให้คุณสร้างส่วนแทน
themightyjon

66

ใช้ตัวอย่างนี้

คุณสามารถใช้เค้าโครง XML เดียวที่ซ้อนมุมมองเด็ก

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

        <android.support.v4.view.ViewPager
            android:id="@+id/pager"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <LinearLayout
                android:id="@+id/page_one"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical" >
                        <TextView
                        android:text="PAGE ONE IN"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:textColor="#fff"
                        android:textSize="24dp"/>
            </LinearLayout>

            <LinearLayout
                android:id="@+id/page_two"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical" >
                        <TextView
                        android:text="PAGE TWO IN"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:textColor="#fff"
                        android:textSize="24dp"/>
            </LinearLayout>

    </android.support.v4.view.ViewPager>
</LinearLayout>

แต่ ... คุณต้องจัดการสิ่งนี้ด้วยอะแดปเตอร์ด้วย ที่นี่เราส่งคืน ID มุมมองที่พบโดยไม่ขยายรูปแบบอื่น ๆ

class WizardPagerAdapter extends PagerAdapter {

    public Object instantiateItem(ViewGroup collection, int position) {

        int resId = 0;
        switch (position) {
        case 0:
            resId = R.id.page_one;
            break;
        case 1:
            resId = R.id.page_two;
            break;
        }
        return findViewById(resId);
    }

    @Override
    public int getCount() {
        return 2;
    }

    @Override
    public boolean isViewFromObject(View arg0, Object arg1) {
        return arg0 == arg1;
    }

    @Override public void destroyItem(ViewGroup container, int position, Object object) {
        // No super
    }
}

// ตั้งค่าอะแดปเตอร์ ViewPager

WizardPagerAdapter adapter = new WizardPagerAdapter();
ViewPager pager = (ViewPager) findViewById(R.id.pager);
pager.setAdapter(adapter);

2
@ user1672337 findViewById สามารถเข้าถึงได้จากคลาสกิจกรรม ดังนั้นสร้างคลาสภายใน (ไม่คงที่) ใน Actvitiy ของคุณ หรือคุณต้องส่งผ่านอินสแตนซ์กิจกรรมไปยังอะแดปเตอร์
ruX

7
ดูเหมือนว่าจะไม่ได้ผลหาก ViewPager มีมุมมองย่อยมากกว่า 2 ครั้ง ตัวอย่างเช่นถ้าฉันมี RelativeLayouts สามรายการใน ViewPager ของฉันแล้วพยายามปัดไปที่หน้าที่สามหน้าที่สามจะแสดงเป็นว่างเปล่า มีความคิดอะไรให้?
Nathan Walters

15
@NathanWalters วันนี้ฉันมีปัญหาเดียวกันได้แก้ไขแล้วโดยเพิ่มคุณสมบัติ OffscreenPageLimit ของ ViewPager อาจเป็นการดีที่จะอัปเดตคำตอบด้วยข้อมูลนี้
Mikhail

2
คุณสามารถใช้return collection.findViewById(resId);หากคุณไม่ต้องการส่งผ่านอินสแตนซ์กิจกรรม
Aksiom

3
โปรดเพิ่มรหัสนี้@Override public void destroyItem(ViewGroup container, int position, Object object) {}
Volodymyr Kulyk

11

เราได้สร้างคลาสย่อยที่ง่ายมากViewPagerที่เราใช้ในบางครั้ง

/**
 * View pager used for a finite, low number of pages, where there is no need for
 * optimization.
 */
public class StaticViewPager extends ViewPager {

    /**
     * Initialize the view.
     *
     * @param context
     *            The application context.
     */
    public StaticViewPager(final Context context) {
        super(context);
    }

    /**
     * Initialize the view.
     *
     * @param context
     *            The application context.
     * @param attrs
     *            The requested attributes.
     */
    public StaticViewPager(final Context context, final AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected void onAttachedToWindow() {
        super.onAttachedToWindow();

        // Make sure all are loaded at once
        final int childrenCount = getChildCount();
        setOffscreenPageLimit(childrenCount - 1);

        // Attach the adapter
        setAdapter(new PagerAdapter() {

            @Override
            public Object instantiateItem(final ViewGroup container, final int position) {
                return container.getChildAt(position);
            }

            @Override
            public boolean isViewFromObject(final View arg0, final Object arg1) {
                return arg0 == arg1;

            }

            @Override
            public int getCount() {
                return childrenCount;
            }

            @Override
            public void destroyItem(final View container, final int position, final Object object) {}
        });
    }

}

คลาสนี้ไม่จำเป็นต้องใช้อะแดปเตอร์เนื่องจากจะโหลดมุมมองจากเค้าโครง ในการใช้โครงการของคุณเพียงใช้แทนไฟล์android.support.v4.view.ViewPager.

ของแฟนซีทั้งหมดจะยังใช้งานได้ แต่คุณไม่จำเป็นต้องกังวลกับอะแดปเตอร์


1
เกือบจะได้ผลสำหรับฉัน แต่ฉันต้องเปลี่ยนonAttachedToWindow()เป็นonFinishInflate().
เอ๊ะ

@Eftekhari มันง่ายกว่าโดยไม่ต้องมีเศษเล็กเศษน้อยและคุณเขียนโค้ดน้อยลงซึ่งหมายความว่าจะอ่านและทำความเข้าใจได้ง่ายขึ้นในภายหลังและมีแนวโน้มที่จะเกิดข้อบกพร่องน้อยลง
Sabo

11

จากคำตอบก่อนหน้านี้ฉันได้ทำชั้นเรียนต่อไปนี้เพื่อให้บรรลุเป้าหมายนั้นด้วยวิธีที่เหมาะสมและชัดเจนที่สุด (ฉันหวังว่า):

public class MyViewPagerAdapter extends PagerAdapter {

    ArrayList<ViewGroup> views;
    LayoutInflater inflater;

    public MyViewPagerAdapter(ActionBarActivity ctx){
        inflater = LayoutInflater.from(ctx);
        //instantiate your views list
        views = new ArrayList<ViewGroup>(5);
    }

    /**
     * To be called by onStop
     * Clean the memory
     */
    public void release(){
     views.clear();
        views = null;
    }

    /**
     * Return the number of views available.
     */
    @Override
    public int getCount() {
        return 5;
    }

    /**
     * Create the page for the given position. The adapter is responsible
     * for adding the view to the container given here, although it only
     * must ensure this is done by the time it returns from
     * {@link #finishUpdate(ViewGroup)}.
     *
     * @param container The containing View in which the page will be shown.
     * @param position The page position to be instantiated.
     * @return Returns an Object representing the new page. This does not
     *         need to be a View, but can be some other container of
     *         the page.  ,container
     */
    public Object instantiateItem(ViewGroup container, int position) {
        ViewGroup currentView;
        Log.e("MyViewPagerAdapter", "instantiateItem for " + position);
        if(views.size()>position&&views.get(position) != null){
            Log.e("MyViewPagerAdapter",
                  "instantiateItem views.get(position) " +
                  views.get(position));
            currentView = views.get(position);
        }
        else{
            Log.e("MyViewPagerAdapter", "instantiateItem need to create the View");
            int rootLayout = R.layout.view_screen;
            currentView = (ViewGroup) inflater.inflate(rootLayout, container, false);

            ((TextView)currentView.findViewById(R.id.txvTitle)).setText("My Views " + position);
            ((TextView)currentView.findViewById(R.id.btnButton)).setText("Button");
            ((ImageView)currentView.findViewById(R.id.imvPicture)).setBackgroundColor(0xFF00FF00);
        }
        container.addView(currentView);
        return currentView;
    }

    /**
     * Remove a page for the given position. The adapter is responsible
     * for removing the view from its container, although it only must ensure
     * this is done by the time it returns from {@link #finishUpdate(ViewGroup)}.
     *
     * @param container The containing View from which the page will be removed.
     * @param position The page position to be removed.
     * @param object The same object that was returned by
     * {@link #instantiateItem(View, int)}.
     */
    @Override
    public void destroyItem(ViewGroup container, int position, Object object) {
        container.removeView((View)object);

    }

    /**
     * Determines whether a page View is associated with a specific key object
     * as returned by {@link #instantiateItem(ViewGroup, int)}. This method is
     * required for a PagerAdapter to function properly.
     *
     * @param view   Page View to check for association with <code>object</code>
     * @param object Object to check for association with <code>view</code>
     * @return true if <code>view</code> is associated with the key object <code>object</code>
     */
    @Override
    public boolean isViewFromObject(View view, Object object) {
        return view==((View)object);
    }
}

และคุณต้องตั้งค่าในกิจกรรมของคุณ:

public class ActivityWithViewsPaged extends ActionBarActivity {

    /**
     * The page Adapter: Manage the list of views (in fact here, its fragments)
     * And send them to the ViewPager
     */
    private MyViewPagerAdapter pagerAdapter;

    /**
     * The ViewPager is a ViewGroup that manage the swipe from left
     * to right to left.
     * Like a listView with a gesture listener...
     */
    private ViewPager viewPager;

    @Override
    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_with_views);

        // Find the viewPager
        viewPager = (ViewPager) super.findViewById(R.id.viewpager);

        // Instantiate the PageAdapter
        pagerAdapter = new MyViewPagerAdapter(this);

        // Affectation de l'adapter au ViewPager
        viewPager.setAdapter(pagerAdapter);
        viewPager.setClipToPadding(false);
        viewPager.setPageMargin(12);

        // Add animation when the page are swiped
        // this instanciation only works with honeyComb and more
        // if you want it all version use AnimatorProxy of the nineoldAndroid lib
        //@see:http://stackoverflow.com/questions/15767729/backwards-compatible-pagetransformer
        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB){
            viewPager.setPageTransformer(true, new PageTransformer());
        }
    }

    @Override
    protected void onStop() {
        super.onStop();
        pagerAdapter.release();
    }

โดยไฟล์ XML เป็น view_screen.xml ที่ชัดเจน:

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

 <TextView
        android:id="@+id/txvTitle"
        android:layout_width="wrap_content"
        android:layout_gravity="center"
        android:layout_height="wrap_content"
        android:layout_marginBottom="5dp"
        android:layout_marginTop="5dp"
        android:shadowColor="#FF00FF"
        android:shadowDx="10"
        android:shadowDy="10"
        android:shadowRadius="5"
        android:textSize="32dp"
        android:textStyle="italic"
        android:background="#FFFFF000"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#FFFF00F0">
        <TextView
            android:id="@+id/txvLeft"
            android:layout_width="wrap_content"
            android:layout_gravity="left"
            android:layout_height="wrap_content"
            android:layout_marginBottom="5dp"
            android:layout_marginTop="5dp"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"/>
        <TextView
            android:id="@+id/txvRight"
            android:layout_width="wrap_content"
            android:layout_gravity="right"
            android:layout_height="wrap_content"
            android:layout_marginBottom="5dp"
            android:layout_marginTop="5dp"/>
    </LinearLayout>
    <Button
        android:id="@+id/btnButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"/>
    <ImageView
        android:id="@+id/imvPicture"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"/>
</LinearLayout>

และ ActivtyMain มีเค้าโครงต่อไปนี้:

<?xml version="1.0" encoding="utf-8"?>

<android.support.v4.view.ViewPager
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingLeft="24dp"
    android:paddingRight="24dp"
    android:id="@+id/viewpager"
    android:background="#FF00F0F0">
</android.support.v4.view.ViewPager>

ขอขอบคุณ Brian และ Nicholas สำหรับคำตอบของคุณฉันหวังว่าฉันจะเพิ่มข้อมูลที่ชัดเจนและเน้นแนวทางปฏิบัติที่ดีสำหรับคุณลักษณะนี้


1
ไม่ดีมากคุณกำลังบันทึกมุมมองที่สร้างขึ้นทั้งหมด จะดีกว่าถ้าบันทึกเฉพาะมุมมองที่มองเห็นได้ (คล้ายกับ
convertview

4

ฉันต้องการอธิบายรายละเอียดเกี่ยวกับคำตอบของ @Nicholas คุณสามารถรับมุมมองตาม id หรือหากเพิ่มแบบไดนามิกเพียงแค่รับมุมมองที่ได้รับโดยตรงจากตำแหน่ง

class WizardPagerAdapter extends PagerAdapter {

    public Object instantiateItem(View collection, int position) {

        View v = pager.getChildAt(position);

        return v;
    }

    @Override
    public int getCount() {
        return 3;
    }

    @Override
    public boolean isViewFromObject(View arg0, Object arg1) {
        return arg0 == ((View) arg1);
    }
}

4

ฉันต้องการเพิ่มโซลูชันของฉันที่นี่ เนื่องจากคุณไม่จำเป็นต้องใช้เศษเล็กเศษน้อยคุณยังสามารถสร้างไฟล์PagerAdapterที่แนบviewsแทนfragmentsไฟล์ViewPager.

ขยายPagerAdapterแทนFragmentPagerAdapter

public class CustomPagerAdapter extends PagerAdapter {

  private Context context;

  public CustomPagerAdapter(Context context) {
    super();
    this.context = context;
  }


  @Override
  public Object instantiateItem(ViewGroup collection, int position) {
    LayoutInflater inflater = LayoutInflater.from(context);
    View view = null;
    switch (position){
      case 0:
        view = MemoryView.getView(context, collection);
        break;
      case 1:
        view = NetworkView.getView(context, collection);
        break;
      case 2:
        view = CpuView.getView(context, collection);
        break;
    }

    collection.addView(view);
    return view;
  }

  @Override
  public int getCount() {
    return 3;
  }

  @Override
  public boolean isViewFromObject(View view, Object object) {
    return view==object;
  }

  @Override
  public void destroyItem(ViewGroup collection, int position, Object view) {
    collection.removeView((View) view);
  }
}

ตอนนี้คุณต้องกำหนดสามคลาสซึ่งจะคืนค่าviewsให้สูงเกินจริงในไฟล์viewpager. คล้ายกับCpuViewคุณจะมีMemoryViewและNetworkViewชั้นเรียน แต่ละคนจะขยายเลย์เอาต์ตามลำดับ

public class CpuView {

public static View getView(Context context, ViewGroup collection) {

    LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context
        .LAYOUT_INFLATER_SERVICE);
    return inflater.inflate(R.layout.debugger_cpu_layout, collection, false);
  }
}

และสุดท้ายคือเลย์เอาต์ซึ่งจะสูงเกินจริงในแต่ละมุมมอง

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

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#000000"
        android:text="CPU"/>
</LinearLayout>

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


IMO กิจกรรมต่างๆใช้งานง่ายกว่า
Denny

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