我想在我的Activity中访问我的Fragment,但到目前为止我尝试的所有内容都会导致片段为null。我尝试在我的活动中执行此操作:
FragmentManager fm = getSupportFragmentManager();
Fragment frag = fm.findFragmentById(R.id.fragment);
WeatherActivityFragment wf = (WeatherActivityFragment) frag;
我的片段看起来像这样:
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fragment"
android:name="nl.marcovp.weather.WeatherActivityFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:layout="@layout/fragment_weather" />
使用的布局如下所示:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingBottom="90dp"
android:paddingTop="16dp"
tools:context="nl.marcovp.weather.WeatherActivityFragment"
tools:showIn="@layout/activity_weather">
我似乎无法弄清楚我在这里做错了什么。