【问题标题】:How to create a Tabbed Activity with ListViews - Android如何使用 ListViews 创建选项卡式活动 - Android
【发布时间】:2016-10-26 09:57:39
【问题描述】:

首先,我是 Android 编程的初学者。我想要做的是编写三个选项卡,每个选项卡里面都有一个 ListView(你从例如 WhatsApp 中知道)。 Android Studio 使自动创建选项卡式活动变得容易。所以问题是:如何为每个 Tab 实现一个 ListView? 实际上,http://www.androidhive.info/2012/05/android-combining-tab-layout-and-list-view/ 上有一个很好的教程,它使用了 TabActivity。但是,此方法已被弃用,应使用 Fragments 代替。我使用 ListView 扩展了 main_fragment.xml(由 Android Studio 创建)。但是设置相应列表适配器的正确方法是什么,尤其是在哪里设置它们?由于空对象引用错误,将它们设置为 onCreate() 中的 ListView list_all = (ListView) findViewById(R.id.listViewAll) 不起作用。我也不知道如何使用onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState)返回的rootView,那么我该如何解决这个问题呢?

main_fragment.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:background="@color/colorAccent"
    android:paddingTop="@dimen/activity_vertical_margin">

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

</RelativeLayout>

main.xml:

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

<android.support.design.widget.CoordinatorLayout 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:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:background="@color/white"

    tools:context="de.url.members">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="@dimen/appbar_padding_top"
        android:background="@color/bg_login_dark"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="@color/bg_login_dark"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/AppTheme.PopupOverlay">

        </android.support.v7.widget.Toolbar>

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabMaxWidth="0dp"
            app:tabGravity="fill"
            app:tabMode="fixed"
            android:fillViewport="false" />

    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end|bottom"
        android:layout_margin="@dimen/fab_margin"
        android:src="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>

main.java:

public class main extends AppCompatActivity {

    /**
     * The {@link android.support.v4.view.PagerAdapter} that will provide
     * fragments for each of the sections. We use a
     * {@link FragmentPagerAdapter} derivative, which will keep every
     * loaded fragment in memory. If this becomes too memory intensive, it
     * may be best to switch to a
     * {@link android.support.v4.app.FragmentStatePagerAdapter}.
     */
    private SectionsPagerAdapter mSectionsPagerAdapter;


    // The {@link ViewPager} that will host the section contents.
    private ViewPager mViewPager;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);


        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        // Create the adapter that will return a fragment for each of the three
        // primary sections of the activity.
        mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());

        // Set up the ViewPager with the sections adapter.
        mViewPager = (ViewPager) findViewById(R.id.container);
        mViewPager.setAdapter(mSectionsPagerAdapter);

        TabLayout tabLayout = (TabLayout) findViewById(R.id.tabs);
        tabLayout.setupWithViewPager(mViewPager);

        FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
            // action here
            }
        });
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_members, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.logout) {
            //action here
        }

        return super.onOptionsItemSelected(item);
    }


    /**
     * A placeholder fragment containing a simple view.
     */

    public static class PlaceholderFragment extends Fragment {
        /**
         * The fragment argument representing the section number for this
         * fragment.
         */
        private static final String ARG_SECTION_NUMBER = "section_number";

        public PlaceholderFragment() {
        }

        /**
         * Returns a new instance of this fragment for the given section
         * number.
         */
        public static PlaceholderFragment newInstance(int sectionNumber) {
            PlaceholderFragment fragment = new PlaceholderFragment();
            Bundle args = new Bundle();
            args.putInt(ARG_SECTION_NUMBER, sectionNumber);
            fragment.setArguments(args);
            return fragment;
        }

        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                                 Bundle savedInstanceState) {

            int sectionNumber = getArguments().getInt(ARG_SECTION_NUMBER);//INDEX of selected TAB
            View rootView;

            if (sectionNumber == 1){
                rootView = inflater.inflate(R.layout.main_fragment, container, false);
            }else if (sectionNumber == 2){
                rootView = inflater.inflate(R.layout.main_fragment, container, false);                 
            }else if (sectionNumber == 3){
                rootView = inflater.inflate(R.layout.main_fragment, container, false);                  
            }else{
                rootView = inflater.inflate(R.layout.main_fragment, container, false);

            }

            return rootView;
        }
    }

    /**
     * A {@link FragmentPagerAdapter} that returns a fragment corresponding to
     * one of the sections/tabs/pages.
     */
    public class SectionsPagerAdapter extends FragmentPagerAdapter {

        public SectionsPagerAdapter(FragmentManager fm) {
            super(fm);
        }

        @Override
        public Fragment getItem(int position) {
            // getItem is called to instantiate the fragment for the given page.
            // Return a PlaceholderFragment (defined as a static inner class below).
            return PlaceholderFragment.newInstance(position + 1);
        }

        @Override
        public int getCount() {
            // Show 3 total pages.
            return 3;
        }

        @Override
        public CharSequence getPageTitle(int position) {
            switch (position) {
                case 0:
                    return getResources().getString(R.string.title_section1);
                case 1:
                    return getResources().getString(R.string.title_section2);
                case 2:
                    return getResources().getString(R.string.title_section3);
            }
            return null;
        }
    }
}

【问题讨论】:

    标签: java android xml listview


    【解决方案1】:

    如果您想将列表与 tablayout 和 viewpager 一起使用,请尝试这种方式,它会为您工作

    public class MainActivity extends AppCompatActivity {
        private static Toolbar toolbar;
        private static ViewPager viewPager;
        private static TabLayout tabLayout;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
            toolbar = (Toolbar) findViewById(R.id.toolbar);
            setSupportActionBar(toolbar);
    
            viewPager = (ViewPager) findViewById(R.id.viewPager);
            setupViewPager(viewPager);
    
            tabLayout = (TabLayout) findViewById(R.id.tabLayout);
            tabLayout.setupWithViewPager(viewPager);//setting tab over viewpager
    
            //Implementing tab selected listener over tablayout
            tabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
                @Override
                public void onTabSelected(TabLayout.Tab tab) {
                    viewPager.setCurrentItem(tab.getPosition());//setting current selected item over viewpager
                    switch (tab.getPosition()) {
                        case 0:
                            Log.e("TAG","TAB1");
                            break;
                        case 1:
                            Log.e("TAG","TAB2");
                            break;
                        case 2:
                            Log.e("TAG","TAB3");
                            break;
                    }
                }
    
                @Override
                public void onTabUnselected(TabLayout.Tab tab) {
                }
    
                @Override
                public void onTabReselected(TabLayout.Tab tab) {
                }
            });
        }
    
    
        //Setting View Pager
        private void setupViewPager(ViewPager viewPager) {
            ViewPagerAdapter adapter = new ViewPagerAdapter(getSupportFragmentManager());
            adapter.addFrag(new DummyFragment("ANDROID"), "ANDROID");
            adapter.addFrag(new DummyFragment("iOS"), "iOS");
            adapter.addFrag(new DummyFragment("WINDOWS"), "WINDOWS");
            viewPager.setAdapter(adapter);
        }
    
    
        //View Pager fragments setting adapter class
        class ViewPagerAdapter extends FragmentPagerAdapter {
            private final List<Fragment> mFragmentList = new ArrayList<>();//fragment arraylist
            private final List<String> mFragmentTitleList = new ArrayList<>();//title arraylist
    
            public ViewPagerAdapter(FragmentManager manager) {
                super(manager);
            }
    
            @Override
            public Fragment getItem(int position) {
                return mFragmentList.get(position);
            }
    
            @Override
            public int getCount() {
                return mFragmentList.size();
            }
    
    
            //adding fragments and title method
            public void addFrag(Fragment fragment, String title) {
                mFragmentList.add(fragment);
                mFragmentTitleList.add(title);
            }
    
            @Override
            public CharSequence getPageTitle(int position) {
                return mFragmentTitleList.get(position);
            }
        }
    }
    

    更多信息请见android-material-design-tabs-using-tablayout

    检查这个http://www.tutorialsbuzz.com/2015/10/Android-Sliding-TabLayout-ListView-WhatsApp.html

    检查一下https://github.com/codepath/android_guides/wiki/Handling-Scrolls-with-CoordinatorLayout

    输出

    【讨论】:

    • 哇哇哇哇! !
    【解决方案2】:

    我将解释如何将 ListView 放在其中一个片段上。 (对不起,如果我写的英文不好)

    您应该将您的 listView 视图放在由您的片段之一显示的 xml 女巫上。在您发布的代码中,布局女巫片段显示是 R.layout.main_fragment

    然后你必须在片段上声明你的 ListView:

    ListView list_all = (ListView) rootView.findViewById(R.id.listViewAll);

    您必须创建一个 ListView 适配器、一个对象类和一些其他文件,您可以使用您发布的教程女巫。

    Link

    然后在片段上分配rootView后,编写代码为这个ListView设置一个Adapter:

    if (sectionNumber == 1){
            rootView = inflater.inflate(R.layout.main_fragment, container, false);
            }else if (sectionNumber == 2){
                rootView = inflater.inflate(R.layout.main_fragment, container, false);                 
            }else if (sectionNumber == 3){
                rootView = inflater.inflate(R.layout.main_fragment, container, false);                  
            }else{
                rootView = inflater.inflate(R.layout.main_fragment, container, false);
    }
    
    ArrayList<Object> arrayListOfObjects = new ArrayList<>();
    arrayListOfObjects.add(new Object(...));
    MyAdapter adapter = new MyAdapter(arrayListOfObjects);
    list_all.setListAdapter(adapter);
    

    【讨论】:

      【解决方案3】:

      我现在通过简单地编辑main.java中public class SectionsPagerAdaptergetItem()方法解决了这个问题。 只需返回默认 ListFragment 而不是 PlaceholderFragment。 有趣的说明:为所有选项卡返回相同的 ListFragment 对象会导致错误。

      main.java:

      public class MainActivity extends AppCompatActivity {
      
          private ArrayAdapter<String> adapter;
      
          private ListFragment contacts1 = new ListFragment();
          private ListFragment contacts2 = new ListFragment();
          private ListFragment contacts3 = new ListFragment();
      
          List<String> words = new ArrayList<String>();
      
          private SectionsPagerAdapter mSectionsPagerAdapter;
      
          /**
           * The {@link ViewPager} that will host the section contents.
           */
          private ViewPager mViewPager;
      
          @Override
          protected void onCreate(Bundle savedInstanceState) {
              super.onCreate(savedInstanceState);
              setContentView(R.layout.activity_main);
      
              Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
              setSupportActionBar(toolbar);
              // Create the adapter that will return a fragment for each of the three
              // primary sections of the activity.
              mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());
      
              // Set up the ViewPager with the sections adapter.
              mViewPager = (ViewPager) findViewById(R.id.container);
              mViewPager.setAdapter(mSectionsPagerAdapter);
      
              TabLayout tabLayout = (TabLayout) findViewById(R.id.tabs);
              tabLayout.setupWithViewPager(mViewPager);
      
              words.add("Hello");
              words.add("World");
              words.add("!");
              adapter = new ArrayAdapter<String>(this,R.layout.item,words);
              contacts1.setListAdapter(adapter);
              contacts2.setListAdapter(adapter);
              contacts3.setListAdapter(adapter);
      
      
              FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
              fab.setOnClickListener(new View.OnClickListener() {
                  @Override
                  public void onClick(View view) {
                      Snackbar.make(view, "Update List", Snackbar.LENGTH_LONG).setAction("Action", null).show();
                      words.add("New Item");
                      adapter.notifyDataSetInvalidated();
                  }
              });
      
          }
      
      
          @Override
          public boolean onCreateOptionsMenu(Menu menu) {
              // Inflate the menu; this adds items to the action bar if it is present.
              getMenuInflater().inflate(R.menu.menu_main, menu);
              return true;
          }
      
          @Override
          public boolean onOptionsItemSelected(MenuItem item) {
              // Handle action bar item clicks here. The action bar will
              // automatically handle clicks on the Home/Up button, so long
              // as you specify a parent activity in AndroidManifest.xml.
              int id = item.getItemId();
      
              //noinspection SimplifiableIfStatement
              if (id == R.id.action_settings) {
                  return true;
              }
      
              return super.onOptionsItemSelected(item);
          }
      
      
          public class SectionsPagerAdapter extends FragmentPagerAdapter {
      
              public SectionsPagerAdapter(FragmentManager fm) {
                  super(fm);
              }
      
              @Override
              public ListFragment getItem(int position) {
      
                  if (position == 0){
                      return contacts1;
                  }else if (position == 1){
                      return contacts2;
                  }else{
                      return contacts3;
                  }
      
      
              }
      
              @Override
              public int getCount() {
                  // Show 3 total pages.
                  return 3;
              }
      
              @Override
              public CharSequence getPageTitle(int position) {
                  switch (position) {
                      case 0:
                          return "SECTION 1";
                      case 1:
                          return "SECTION 2";
                      case 2:
                          return "SECTION 3";
                  }
                  return null;
              }
          }
      }
      

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2018-01-02
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多