1

このレイアウトの最後の TextView の layout_weight 属性は、パフォーマンスの低下の原因として lint によって強調表示されています。ネストされた重みがないため、リント警告の名前が間違っていると思われます。いくつかのストレッチ ビューがあり、それが何を意味するのかは、重み付けされたビューに依存していると思われます。

このレイアウトを構築し、このリント警告を回避し、パフォーマンスを向上させるための解決策は何ですか?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:gravity="center_horizontal"
          android:background="@drawable/background_gradient"
    >
<ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/image4"
        android:layout_margin="6dp"
        android:contentDescription="@string/PLACEHOLDER_TEXT"
        />
<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="horizontal"
        >
    <Button
            style="@style/dashboard_button"
            android:id="@+id/home_management"
            android:text="@string/ICON_MANAGEMENT"
            />
    <Button
            style="@style/dashboard_button"
            android:id="@+id/home_calculators"
            android:text="@string/ICON_CALCULATORS"
            />
</LinearLayout>
<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="horizontal"
        >
    <Button
            style="@style/dashboard_button"
            android:id="@+id/home_guidelines"
            android:text="@string/ICON_GUIDELINES"
            />
    <Button
            style="@style/dashboard_button"
            android:id="@+id/home_faq"
            android:text="@string/ICON_FAQ"
            />
</LinearLayout>
<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="horizontal"
        >
    <Button
            style="@style/dashboard_button"
            android:id="@+id/home_refs"
            android:text="@string/ICON_REFERENCES"
            />
    <Button
            style="@style/dashboard_button"
            android:text=""
            android:visibility="invisible"
            />
</LinearLayout>
<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="center_vertical"
        android:layout_margin="6dp"
        >
    <TextView
            android:text="@string/HOMEPAGE_CONTENT"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center_horizontal"
            android:textStyle="bold"
            android:textColor="#FFFFFF"
            />
    <View
            android:layout_width="8dp"
            android:layout_height="1dp"
            />
    <ImageView
            android:id="@+id/home_logo"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:src="@drawable/image7"
            android:contentDescription="@string/PLACEHOLDER_TEXT"
            />
</LinearLayout>
<Button
        android:id="@+id/home_web_site"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/HOMEPAGE_FOOTER"
        android:paddingLeft="4dp"
        android:paddingRight="4dp"
        android:paddingTop="8dp"
        android:paddingBottom="8dp"
        android:textSize="12sp"
        android:background="@drawable/button_red"
        android:layout_margin="6dp"
        android:textColor="#FFFFFF"
        />
</LinearLayout>
4

3 に答える 3

2

ただし、特に重みが本当に必要な場合や、それがレイアウトを適切に宣言する唯一の方法である場合は、これについて心配する必要はありません。

于 2012-04-10T15:09:17.277 に答える
1

エリア内のTextViewImageView@string/HOMEPAGE_CONTENT親にネストされてLinearLayoutおり、重みが割り当てられています。特に親がであるため、これらがあなたの問題であると私は思うwrap_contentので、理論的には子要素が伸びるスペースがあってはなりません。

于 2012-04-10T15:04:04.063 に答える
0

コードのこの部分について。

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:orientation="horizontal"

<Button
        style="@style/dashboard_button"
        android:id="@+id/home_management"
        android:text="@string/ICON_MANAGEMENT"
        />
<Button
        style="@style/dashboard_button"
        android:id="@+id/home_calculators"
        android:text="@string/ICON_CALCULATORS"
        />

LinearLayout には「layout_weight」属性が含まれており、スタイル「dashboard_button」にも属性「layout_weight」が含まれている場合、「layout_weight」属性を持つネストされたビューがいくつか得られますが、lint は「layout_weight」に関して警告しません。スタイルの内側。私の解決策は、LinearLayouts の 1 つ (または両方) を RelativLayout に置き換え、サイズと場所をプログラムで調整することです。

于 2014-12-04T17:17:50.227 に答える