gpt4 book ai didi

android - 这个 Android Lint 是什么意思 : "Wrong orientation?"

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:12:53 29 4
gpt4 key购买 nike

我在 eclipse 中运行 Android lint 时出现错误:

Wrong orientation? No orientation specified, and the default is horizontal, yet this layout has multiple children where at least one has layout_width="match_parent"

Issue: Checks that LinearLayouts with multiple children set the orientation 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 错误会发生什么?

最佳答案

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 执行的检查列表。

关于android - 这个 Android Lint 是什么意思 : "Wrong orientation?",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15718555/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com