java - 不同的按钮,相同的导航 Activity ,但导航 Activity 中 fragment 的结果不同

标签 java android arrays android-fragments android-activity

我遇到了问题。我有许多带有循环的按钮,我想将它们放入相同的 Activity (导航 Activity ),但我希望导航的 fragment 结果不同。你能帮我解决这个问题吗?

ButtonSelectActivity(按钮的位置)

public class ButtonSelectActivity extends AppCompatActivity {

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

    LinearLayout f = (LinearLayout) findViewById(R.id.lala);
    f.setOrientation(LinearLayout.VERTICAL);

    for (int i = 0; i <= 6; i++) {
        LinearLayout row = new LinearLayout(this);
        row.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT));
        for (int a = 0; a <= 7; a++) {
            for (int l = 65; l <= 90; l++) {
                Button button = new Button(this);
                button.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT));
                button.setText("" + (char) (l + (i * 4)));
                button.setId((char) (l + (i * 4)));
                row.addView(button);

                final String id = String.valueOf((char) (l + (i * 4)));
                button.setOnClickListener(new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                        startActivity(new Intent(ButtonSelectActivity.this, Main2Activity.class));
                    }
                });
            }
        }
        f.addView(row);
    }
}}

这就是 Activity 结果

public class Main2Activity 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.activity_main2);

    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);


    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
    fab.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                    .setAction("Action", null).show();
        }
    });

}


@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_main2, 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);
}

/**
 * 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) {
        View rootView = inflater.inflate(R.layout.fragment_main2, container, false);
        TextView textView = (TextView) rootView.findViewById(R.id.section_label);
        textView.setText(getString(R.string.section_format, getArguments().getInt(ARG_SECTION_NUMBER)));
        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).
        if (position == 1) {
            return new FragmentDua();
        } else if (position == 0) {
            return new FragmentSatu();
        } else if (position == 2) {
            return new FragmentTiga();
        } else
            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 "SECTION 1";
            case 1:
                return "SECTION 2";
            case 2:
                return "SECTION 3";
        }
        return null;
    }
}

}

谢谢你:)

最佳答案

假设您想要不同的结果取决于单击的按钮。

只需将 bundle 中的最终字符串 id 传递给 Main2Activity.class

所以你应该在 ButtonSelectActivity 类中

    button.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        Intent intent = new Intent(ButtonSelectActivity .this, Main2Activity.class);
        intent.putExtra("key", id);
        startActivity(intent);
      }
    });

以及Main2Activity类的onCreate内部

int id = getIntent().getExtras().getInt("key");

然后你可以根据这个id变量显示你需要的内容

更新:

更好的做法是使用 RecyclerView,其元素包含 Buttons。会是一样的,但更容易使用。

关于java - 不同的按钮,相同的导航 Activity ,但导航 Activity 中 fragment 的结果不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43117498/

相关文章:

java - spring-mvc 中 swagger-ui (io.swagger) 的描述中出现了垃圾值 --> ��� ,如何删除它?

android - 是否可以将类的内部类注册为广播接收器

c - 可靠地确定数组中元素的数量

c++ - 如何调整数组的大小 C++

java - 如何在java中使用已弃用的导入?

java - Android SQLite Where 子句 NPE

java - 安卓白屏

java - 如何在android中定义地理围栏的矩形

android - 在 Android NDK 中将字符串传递给 C 代码

c - 在邻接表中使用 DFS 并使用指针的指针数组