安卓开发用新版eclipse怎么解决fragment.xml
2016-03-15 · 百度知道合伙人官方认证企业
安卓开发中fragment在xml布局中写法如下:
1、layout.xml代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#555555">
<fragment class="com.androidbook.fragments.bard.TitlesFragment"
android:id="@+id/titles"
android:layout_weight="1"
android:layout_width="0px"
android:layout_height="match_parent"
android:background="#00550033" />
<FrameLayout android:id="@+id/details"
android:layout_weight="2"
android:layout_width="0px"
android:layout_height="match_parent" />
</LinearLayout>
程序运行图片如下:
<fragment> 标记只是此布局中的一个占位符,不能将子标记放在<fragment> 标记内
<fragment>标记的class特性指定应用程序 的标题的扩展类, 也就是必须写一个类 继承Fragment, 碎片拥有自己的视图层次结构,该结构将由碎片在以后创建。