Android Fragments:Frame或其他布局中的片段?

时间:2014-09-12 12:17:30

标签: java android performance fragment android-framelayout

我正在创建一个Android应用程序,我有一个包含片段的框架。直到现在一切正常,但我遇到了一个我无法完全理解的问题。

我有一个框架,它是整个屏幕(FrameLayout - 我应该使用FrameLayout作为主框架吗?)并且在这个框架内部有根据用户交互而改变的片段。这些片段位于.xml文件FrameLayouts中。我现在想知道他们是否可以或应该是FrameLayouts或片段......我创建了一个谷歌地图片段,这是一个片段,并让我思考。

所以我的问题是:它是否会产生影响或对性能有任何影响,或者我可以简单地使用它的目的吗?

为了表明我的意思,这里有一些代码示例: (在Framelayout内的FrameLayout内部放置所有片段)

MainFrame(activity_main.xml):

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    tools:ignore="MergeRootFrame" >

    <FrameLayout
        android:id = "@+id/mainFrame"
        android:layout_width = "match_parent"
        android:layout_height = "match_parent"
        android:layout_marginBottom = "@dimen/bottom_Main_Tabs">
        </FrameLayout>

    <LinearLayout
        android:layout_width = "match_parent"
        android:layout_height = "@dimen/bottom_Main_Tabs"
        android:layout_gravity = "bottom"
        android:background="@color/grey2"
        >

        <ImageButton
            android:id = "@+id/bottomButton_home"
            android:layout_height = "match_parent"
            android:layout_width = "0dp"
            android:layout_weight = "1.0"
            android:layout_marginLeft = "2dp"
            android:layout_marginRight = "2dp"
            android:background = "@drawable/ic_home_white"
            android:onClick = "openHome"
            />

        [...]

    </LinearLayout>

    <RelativeLayout
        android:id = "@+id/TopBar"
        android:layout_width = "match_parent"
        android:layout_height = "@dimen/top_Bar_Hight"
        android:layout_gravity="top"
        android:background="@color/grey_transparentBy50"
        >

        <ImageView
            android:id= "@+id/TopBarLogo"
            android:layout_width = "@dimen/top_Bar_Hight"
            android:layout_height = "@dimen/top_Bar_Hight"
            android:background="@drawable/ic_launcher"
            />

         [...]

    </RelativeLayout>

</FrameLayout>

一个片段(FrameLayout:)

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/home_fragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/blue"
    tools:context="com.domain.app.HomeFragment">

    <!-- TODO: Update blank fragment layout -->
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="50dp"
        android:textSize="100sp"
        android:text="Home" />

</FrameLayout>

另一个Frament(片段)

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:tools="http://schemas.android.com/tools"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:id="@+id/map"
          tools:context="com.domain.app.MapsActivity"
          android:name="com.google.android.gms.maps.MapFragment"
          tools:layout = "@layout/activity_main"
    />

GoogleMaps实施方面是否存在问题,但我还没有花足够的时间在这里询问有关帮助的问题。

提前致谢。

约翰

1 个答案:

答案 0 :(得分:2)

如果要在xml中附加片段(如GoogleMapFragment),或者在xml中使用FrameLayout(或任何其他ViewGroup,如LinearLayout或RelativeLayout)。两种方式都是一样的。它更有可能以编程方式(即在Java中)创建textview或在xml中定义它。

在Java中使用片段:

FragmentManager fragmentManager = getFragmentManager()
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
ExampleFragment fragment = new ExampleFragment();
fragmentTransaction.add(R.id.fragment_container, fragment);
fragmentTransaction.commit();

和xml

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/fragment_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

此处R.id.fragment_container是您的Frame Layout的ID。

在XML中使用片段:

<fragment android:name="com.example.ExampleFragment"
            android:id="@+id/fragment"               
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

如果是XML片段,你的片段将由<fragment/> xml标签定义,另一方面,当我们以编程方式使用片段时,你的FrameLayout将作为片段的容器。

结论:使用FrameLayout会将层次结构增加一个,但它不会对您的性能产​​生太大影响。

请参阅:http://developer.android.com/guide/components/fragments.html#Adding

  

指定Fragment中的android:name属性   要在布局中实例化的类。系统创建时   活动布局,它实例化布局中指定的每个片段   并为每个调用onCreateView()方法,以检索每个   片段的布局。系统插入由...返回的视图   直接代替元素。