我在尝试在 XML 中为我的 Fragments 提供一个 id 时遇到问题,但是我似乎无法做到这一点。我尝试了以下教程,但 id 似乎没有设置为片段。我正在使用提供的滑动 + 部分模板。这是我的主要活动的 xml:
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<!--
This title strip will display the currently visible page title, as well as the page
titles for adjacent pages.
-->
<android.support.v4.view.PagerTitleStrip
android:id="@+id/pager_title_strip"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:background="#33b5e5"
android:paddingBottom="4dp"
android:paddingTop="4dp"
android:textColor="#fff" />
<Fragment
android:id="@+id/account_information_fragment"
android:name="com.example.AccountInformationFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.view.ViewPager>
然后在我的片段类中,我使用它来设置布局:
final View view = inflater.inflate(R.layout.account_information_layout, container, false);
而且该布局不包含任何标签。任何帮助将非常感激