Android:优化嵌套布局

时间:2014-09-23 03:43:34

标签: android android-layout gridview optimization

我创建了一个布局,我在gridview中遇到了很多性能问题。 我已经读过嵌套布局可以防止平滑滚动:

http://developer.android.com/training/improving-layouts/optimizing-layout.html

这是我的代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="100dp"
    android:layout_height="wrap_content">


    <RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/relativelayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <com.bestpick.bestpickapplication.SquareImageView
            android:id="@+id/menu_item_image"
            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:background="@color/LightGrey"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            />



        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignBottom="@+id/menu_item_image"
            android:background="#77000000"
            android:orientation="vertical">
            <TextView
                android:id="@+id/menu_item_name"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_margin="1dp"
                android:textColor="@color/white"
                android:gravity="left"
                android:text="Title"
                android:textSize="12sp"
                android:maxLines="2"
                android:ellipsize="end"
                />
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal"
                android:gravity="center_vertical">

                <RatingBar android:id="@+id/menu_item_avg_rating"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:numStars="5"
                    android:stepSize="0.1"
                    android:rating="0"
                    style="?android:attr/ratingBarStyleSmall"
                    />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textColor="@color/white"
                    android:text= "("
                    android:textSize="12sp"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:id="@+id/menu_item_number_ratings"
                    android:text= "0"
                    android:textColor="@color/white"
                    android:textSize="12sp"/>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text= ")"
                    android:textColor="@color/white"
                    android:textSize="12sp"/>


            </LinearLayout>


        </LinearLayout>

    </RelativeLayout>

</LinearLayout>

如果没有这么多级别的布局,我怎样才能达到相同的效果?

编辑:布局图片 Picture of the target layout

2 个答案:

答案 0 :(得分:2)

希望这会有所帮助 我的输出
  enter image description here

<LinearLayout
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="100dp"
android:layout_height="wrap_content">

    <ImageView
        android:id="@+id/menu_item_image"
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:background="@android:color/darker_gray"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"/>


        <TextView
            android:id="@+id/menu_item_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textColor="@android:color/white"
            android:gravity="left"
            android:text="Title"
            android:textSize="12sp"
            android:maxLines="2"
            android:ellipsize="end"
            android:background="#770"
            />
        <LinearLayout

            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#770"
            android:orientation="horizontal">    
            <RatingBar android:id="@+id/menu_item_avg_rating"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:numStars="5"
                android:stepSize="0.1"
                android:rating="0"
                android:layout_weight="1"
                style="?android:attr/ratingBarStyleSmall"
                />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/menu_item_number_ratings"
                android:text= "(0)"
                android:textColor="@color/white"
                android:textSize="12sp"
                android:layout_weight="1"/>
            </LinearLayout>

        </LinearLayout>

答案 1 :(得分:1)

我遗漏了多余的东西(例如文字颜色等),这样你就可以看到如何使用布局属性来产生你想要的效果。这种布局只使用6个视图和一个嵌套级别 - 如果你真的想要最小化视图数量,它可以用5个视图来做,但这是更清洁的方法。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="100dp"
    android:layout_height="100dp" >

    <com.bestpick.bestpickapplication.SquareImageView
        android:id="@+id/menu_item_image"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <View android:background="#77000000"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_alignTop="@+id/menu_item_name"
        android:layout_alignParentBottom="true"/>

    <RatingBar
        android:id="@+id/menu_item_avg_rating"
        style="?android:attr/ratingBarStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" />

    <TextView
        android:id="@+id/menu_item_number_ratings"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_toRightOf="@id/menu_item_avg_rating" />

    <TextView
        android:id="@+id/menu_item_name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@id/menu_item_avg_rating" />

</RelativeLayout>

请注意,对于RatingBar旁边的TextView,目的是使用带有%1$d的字符串资源并使用getString(R.string.whatever, some_integer)来获取相应的文本。如果您不知道如何运作,请参阅this link