我在尝试将我的Fragments作为XML中的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);
该布局不包含任何标签。任何帮助将不胜感激
答案 0 :(得分:2)
我想我发现了这个问题。首先,Fragment标签需要以小写字母F开头,如下所示:
好:
<fragment>
为:
<Fragment>
其次,我担心在尝试显示任何非字符串时,Toast会返回false。你必须使用
String.valueOf(fragment.getId());
为了让它以Toast显示。
我不知道为什么这一开始没有起作用,因为我相信我之前为标签尝试了f和F.设置android:标签帮我调试了这个,因为它会自然地返回一个字符串。