0

我正在学习在 android 上创建应用程序,但片段功能存在问题。

我使用 eclipse 创建了一个新的黑色活动,并选择了“滑动视图+标题条”导航类型。

我运行了它,它完全可以显示第 1 节、第 2 节、第 3 节。我想做的是为每个部分选择不同的布局,所以我以这种方式调整了代码:

package fr.mpsn.networkclient;

import android.R.layout;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.app.NavUtils;
import android.support.v4.view.ViewPager;
import android.util.Log;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

public class HomeActivity extends FragmentActivity {

    /**
     * The {@link android.support.v4.view.PagerAdapter} that will provide
     * fragments for each of the sections. We use a
     * {@link android.support.v4.app.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}.
     */
    SectionsPagerAdapter mSectionsPagerAdapter;

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

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

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

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

    }

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

    /**
     * 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 DummySectionFragment (defined as a static inner class
            // below) with the page number as its lone argument.
            Log.i("info", ""+position);
            Fragment fragment = new DummySectionFragment("view_publishmessage");
            switch (position) {
            case 0:
                fragment =null;
                fragment = new DummySectionFragment("view_publishmessage");
            case 1:
                fragment =null;
                fragment = new DummySectionFragment("view_timeline");
            case 2:
                fragment =null;
                fragment = new DummySectionFragment("view_profile");
            }

            Bundle args = new Bundle();
            args.putInt(DummySectionFragment.ARG_SECTION_NUMBER, position + 1);
            fragment.setArguments(args);
            return fragment;
        }

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

        @Override
        public CharSequence getPageTitle(int position) {
            switch (position) {
            case 0:
                return "Nouvelle publication".toUpperCase();
            case 1:
                return "Timeline".toUpperCase();
            case 2:
                return "Profil".toUpperCase();
            }
            return null;
        }
    }

    /**
     * A dummy fragment representing a section of the app, but that simply
     * displays dummy text.
     */
    public static class DummySectionFragment extends Fragment {
        /**
         * The fragment argument representing the section number for this
         * fragment.
         */
        public static final String ARG_SECTION_NUMBER = "section_number";
        public final String fragmentLayoutName;

        public DummySectionFragment(String fragmentLayoutName) {
            this.fragmentLayoutName = fragmentLayoutName;
        }

        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                Bundle savedInstanceState) {
            // Create a new TextView and set its text to the fragment's section
            // number argument value.

            return inflater.inflate(
                    this.getResources().getIdentifier(this.fragmentLayoutName,
                            "layout", "fr.mpsn.networkclient"), null);
        }
    }

}

问题是所有不同的部分都使用视图配置文件布局,即使案例被正确解析......

您对如何改进此代码以使其更好地工作有任何想法吗?

4

1 回答 1

1

你没有错过你的一些break陈述switch吗?没有它,代码继续下一个案例:

switch(cond) {
case A:
  print("hello!");
  //break;
case B:
  print("hello again!");
  //break;
}
=> 
hello! 
hello again!

此外,最好对片段使用空构造函数,否则在重新创建片段时(例如在配置更改之后)会出现问题。
请参阅片段真的需要一个空的构造函数吗?

您可以使用Fragment.setArguments()andFragment.getArguments()传递您的fragmentLayoutName.

于 2013-03-09T17:44:16.590 回答