7

Eclipse で Android lint を実行していますが、エラーが発生します。

向きを間違えた?方向が指定されておらず、デフォルトは水平ですが、このレイアウトには複数の子があり、少なくとも 1 つが layout_width="match_parent" を持っています

問題: 複数の子を持つ LinearLayouts が向き ID: Orientation を設定していることを確認します。

そして、これはエラーコードです:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="@dimen/cell_height_1_of_3" >

    <ImageView
        android:id="@+id/item_cover"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_gravity="left"
        android:layout_marginLeft="8dp"
        android:scaleType="fitCenter"
        android:src="@drawable/doc_item_icon" />

    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="@dimen/cell_height_1_of_3"
        android:background="#0000"
        android:padding="5dp"
        android:scaleType="centerInside"
        android:visibility="gone" />

    <TextView
        android:id="@+id/item_title"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:ellipsize="end"
        android:gravity="center"
        android:maxLines="1"
        android:text="Add new"
        android:textColor="@color/office_color"
        android:textSize="@dimen/textview_small_size" />

</LinearLayout>

どういう意味ですか?この lint エラーを無視するとどうなりますか?

4

2 に答える 2

16

Android Lint は、ADT 16 (および Tools 16) で導入された新しいツールで、Android プロジェクト ソースをスキャンして潜在的なバグを探します。

http://developer.android.com/tools/help/lint.html

レイアウトの向きを指定する必要があります。

  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:orientation="vertical"   //specify vertical or horizontal depending on your need
    android:layout_height="@dimen/cell_height_1_of_3" >

http://tools.android.com/tips/lint-checks。lint によって実行されるチェックのリスト。

于 2013-03-30T12:41:23.453 に答える
2

LinearLayout で方向を指定しなかった場合、2 つの ImageViews と TextView が隣り合わせにレンダリングされます。

android:orientation="horizontal"

想定されます

それらを互いの下にレンダリングする場合は、使用します

android:orientation="vertical"
于 2013-03-30T12:38:10.367 に答える