提高应用布局的性能

时间:2016-02-18 13:44:20

标签: android performance

我正在使用层次结构视图来检查我的应用程序布局性能。我减少了大部分内容,但如何提高框架布局性能,因此应用程序将很快。因为我在框架布局上看起来是红色。

如何解决问题

这是XML布局

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/com.org.AmarUjala.news"
   android:layout_width="match_parent"
    android:layout_height="match_parent"
     >


    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />


    <FrameLayout
        android:id="@+id/header"
        android:layout_width="match_parent"
        android:layout_height="@dimen/header_height"
         >

        <android.support.v4.view.ViewPager
            android:id="@+id/headerView_pager"
            android:layout_width="match_parent"
            android:layout_height="@dimen/viewpager_height" />

        <com.org.AmarUjala.news.utility.CirclePageIndicator
            android:id="@+id/indicator"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="10dp"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="20dp"
            android:theme="@style/StyledIndicators"/>

        <com.org.AmarUjala.news.PagerSlidingTabStrip
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="@dimen/tab_height"
            android:layout_gravity="bottom"
            android:background="@color/white"
            android:visibility="visible"
            app:should_expand="true" />
    </FrameLayout>

</FrameLayout> 

0 个答案:

没有答案