我在使用支持库实现片段时遇到了异常,例如:
您能告诉我如何使用支持库运行Fragment吗?
答案 0 :(得分:1)
作为一个开发过程:
样本布局:
<fragment android:name="com.example.android.fragments.HeadlinesFragment"
android:id="@+id/headlines_fragment"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent" />
请注意,您需要在 android:name 属性中定义类名。
您可以在此处找到Google提供的运行教程:
https://developer.android.com/training/basics/fragments/creating.html
另一个样本带到这里:
http://android-er.blogspot.nl/2011/12/example-of-using-compatibility-package.html