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);
そして、そのレイアウトにはタグが含まれていません。どんな助けでも大歓迎です