2 回答
TA贡献2016条经验 获得超9个赞
安卓开发中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, 碎片拥有自己的视图层次结构,该结构将由碎片在以后创建。
- 2 回答
- 0 关注
- 352 浏览
添加回答
举报