关于xml布局中Fragment与 FrameLayout的理解

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    tools:context=".ActionTab_Activity" >

    <!-- 一定要tool:comtext -->
    <!--如果是fragment,一定要设置某fragment名字
   如 android:name="com.cohere.fc.FragmentProcess" 
    表示启动时先加载某fragment
    -->


    <Fragment
        android:id="@+id/main_titles"
        android:name="com.cohere.fc.FragmentProcess" 
        android:layout_width="0px"
        android:layout_height="match_parent"
        android:layout_weight="1" />

<pre name="code" class="html">    <!-- FrameLayout是一个放置Fragment的容器 ,
不需要指定某个Fragment的名字,
可以通过FragmentManager动态添加删除想放入其中的Fragment-->
<FrameLayout android:id="@+id/main_details" android:layout_width="0px" android:layout_height="match_parent" android:layout_weight="4" /></LinearLayout>
 


FrameLayout与Fragment标签都是用来放Fragment的,区别是,Fragment标签只能设置固定的Fragment,而FrameLayout中可以通过FragmentManager更换Fragment

相关文章

php输出xml格式字符串
J2ME Mobile 3D入门教程系列文章之一
XML轻松学习手册
XML入门的常见问题(一)
XML入门的常见问题(三)
XML轻松学习手册(2)XML概念