1

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

そして、そのレイアウトにはタグが含まれていません。どんな助けでも大歓迎です

4

1 に答える 1

2

I think I found the problem. First off, the Fragment tag needs to start with a lower-case F, like so:

Good:

<fragment>

Bad:

<Fragment>

Secondly, I am afraid I forgot that a Toast will return false when trying to display any non-string. You would have to use

String.valueOf(fragment.getId());

In order for it to show in a Toast.

I have no idea why this wasn't working at first since I believe I tried both f and F for the tag earlier. Setting an android:tag helped me debug this because that returns a string naturally.

于 2013-02-14T01:29:02.507 に答える