如何在android studio

时间:2016-02-22 19:47:43

标签: java android android-activity android-studio tabs

我是一个在android工作室尝试的新手。如何将我的内容放在第1部分和第2部分中的其他内容等等(我创建了一个标签式活动) 我的意思是预制代码允许我只编辑字符串,并立即将其放在所有选项卡中。如何选择第一页并插入内容? 一切都有帮助

样品:

/**
 * 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_main, 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;
    }
}

的strings.xml:

<resources>
<string name="app_name">App name</string>
<string name="action_settings">Settingsy</string>
<string name="section_format">Section text. Taken from strings.xml</string>

project screenshot on a device

1 个答案:

答案 0 :(得分:1)

创建两个片段,例如Fragment1和Fragment2。为fragment1和fragment2创建两个xml布局,并在相应的片段中进行膨胀。然后将每个片段分配给相应的选项卡。

关注此LINK。这对你有很大帮助。