我最近试图了解一个sample关于片段.对于这一行,具体:
DetailsFragment details = (DetailsFragment)getFragmentManager().findFragmentById(R.id.details);
字符串
哪里
public static class DetailsFragment extends Fragment{
...
}
型
而layout.xml如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent" android:layout_height="match_parent">
<fragment class="com.example.android.apis.app.FragmentLayout$TitlesFragment"
android:id="@+id/titles" android:layout_weight="1"
android:layout_width="0px" android:layout_height="match_parent" />
<FrameLayout android:id="@+id/details" android:layout_weight="1"
android:layout_width="0px" android:layout_height="match_parent"
android:background="?android:attr/detailsElementBackground" />
</LinearLayout>
型
我的问题是为什么方法findFragmentById
接收FrameLayout
的参数会以类似类型转换的方式返回Fragment
的对象?然而,FrameLayout
扩展了ViewGroup
,Fragment
扩展了java.lang.Object
,它们没有共享一个公共的超类。
2条答案
按热度按时间l0oc07j21#
你可以用另一种方法来找到这样的片段。
字符串
mzaanser2#
另一种方法是像这样存储Fragment类转换
1x个月