为了账号安全,请及时绑定邮箱和手机立即绑定

安卓开发用新版eclipse怎么解决fragment.xml

安卓开发用新版eclipse怎么解决fragment.xml

波斯汪 2019-05-14 13:08:17
安卓开发用新版eclipse怎么解决fragment.xml
查看完整描述

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,  碎片拥有自己的视图层次结构,该结构将由碎片在以后创建。





查看完整回答
反对 回复 2019-05-15
  • 2 回答
  • 0 关注
  • 352 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信