内容简介:翻译自:https://stackoverflow.com/questions/15718555/what-does-this-android-lint-mean-wrong-orientation
我在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(和 工具 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执行的检查清单.
翻译自:https://stackoverflow.com/questions/15718555/what-does-this-android-lint-mean-wrong-orientation
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- Flink被收购意味着什么
- Lambdas不意味着函数式编程
- hadoop – 什么是非DFS使用意味着什么?
- Windows Lite 对微软来说意味着什么?
- [译] Hooks 对 Vue 而言意味着什么
- Swift ABI 稳定对我们到底意味着什么
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
挑战程序设计竞赛
秋叶拓哉、岩田阳一、北川宜稔 / 巫泽俊、庄俊元、李津羽 / 人民邮电出版社 / 2013-7-1 / CNY 79.00
世界顶级程序设计高手的经验总结 【ACM-ICPC全球总冠军】巫泽俊主译 日本ACM-ICPC参赛者人手一册 本书对程序设计竞赛中的基础算法和经典问题进行了汇总,分为准备篇、初级篇、中级篇与高级篇4章。作者结合自己丰富的参赛经验,对严格筛选的110 多道各类试题进行了由浅入深、由易及难的细致讲解,并介绍了许多实用技巧。每章后附有习题,供读者练习,巩固所学。 本书适合程序设计......一起来看看 《挑战程序设计竞赛》 这本书的介绍吧!