android- #15: You must supply a layout_height attribute

问题描述

#15: You must supply a layout_height attribute

xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="${packageName}.${activityClass}" >

<EditText
    android:id="@+id/TitleEditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ems="10" />

<EditText
    android:id="@+id/ContentEditText"
    android:layout_width="match_parent"
    android:layout_weight="0.86"
    android:layout_height="wrap_content"
    android:ems="10" >

    <requestFocus />
</EditText>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/AddButton"
        android:layout_height="wrap_content"
        android:layout_weight="17.48"
        android:text="增加" />

    <Button
        android:id="@+id/SearchButton"
        android:layout_width="160dp"
        android:layout_height="wrap_content"
        android:layout_weight="1.14"
        android:text="查看" />

</LinearLayout>

报错如上;表示看不懂哪里错了。

解决方案

我去。我搞定了。这是代码。留给后人
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:context="${packageName}.${activityClass}" >

<EditText
    android:id="@+id/TitleEditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
     android:hint="@null"
    android:ems="10" />

<EditText
    android:id="@+id/ContentEditText"
    android:layout_width="fill_parent"
    android:layout_weight="0.86"
    android:layout_height="0dp"
     android:hint="@null"
    android:ems="10" >
</EditText>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/AddButton"
        android:layout_height="wrap_content"
        android:layout_width="160dp"
        android:text="增加" />

    <Button
        android:id="@+id/SearchButton"
        android:layout_width="160dp"
        android:layout_height="wrap_content"
        android:layout_weight="1.14"
        android:text="查看" />

</LinearLayout>

解决方案二:

You must supply a layout_width attribute. 错误解决
You must supply a layout_width attribute. 错误解决
You must supply a layout_width attr

时间: 2024-10-24 04:26:55

android- #15: You must supply a layout_height attribute的相关文章

动态加载apk-安卓插件开发报错 You must supply a layout_height attribute.

问题描述 安卓插件开发报错 You must supply a layout_height attribute. 将一个编译好的apk放到sd卡中作为插件,然后让另外一个APK动态去加载,但是当在三星手机上运行时会报如下错误,可以确定插件apk的layout每个layout_height 属性都设置了,而且滴31行的XML不是layout_height属性: 08-08 10:39:41.683: E/ProxyActivity.launchTargetActivity(L:150)(26565

Android 15本经典教程和150多个实例源码

http://blog.csdn.net/hstar00004/article/details/7186974

Android应用程序项目结构

用Eclipse打开Android应用程序的项目可以看到如下图所示的文件结构. src文件夹保存的是我们编写的java源文件,我们编写的源代码一般都放在这个文件夹内.比如HelloAndroid.java这个文件就是我们编写的代码文件. 01.package org.leo.android;02.03.import android.app.Activity;04.import android.graphics.Color;05.import android.os.Bundle;06.import

Android SDK Manager和AVD Manager使用

原文:Android SDK Manager和AVD Manager使用 Android SDK Manager和AVD Manager使用(win7_64bit下测试) 目录 1.概述 2.本文用到的工具 3.安卓开发基础工具包下载 4.Android SDK Manager使用 5.AVD Manager使用 6.注意事项 7.相关博文(AndroidStudio.IDEA.Eclipse安卓环境配置) >>看不清的图片可在新标签打开查看大图 1.概述 顾名思义,Android SDK M

Android Studio 集成EaseUI启动App就报错

问题描述 Process: com.mic.android.bbaccount, PID: 7598                                                                         java.lang.UnsatisfiedLinkError: Couldn't load hyphenate_av from loader dalvik.system.PathClassLoader[DexPathList[[zip file "/da

Android中的ViewPager视图滑动切换类的入门实例教程_Android

ViewPager引入示例首先让大家有个全局的认识,直接上个项目,看看仅仅通过这几行代码,竟然就能完成如此强悍的功能. 效果图: 实现了三个view间的相互滑动. 第一个VIEW向第二个VIEW滑动.第二个VIEW向第三个VIEW滑动 一.新建项目,引入ViewPager控件ViewPager.它是google SDk中自带的一个附加包的一个类,可以用来实现屏幕间的切换. 1.在主布局文件里加入 <RelativeLayout xmlns:android="http://schemas.a

Android中的ViewPager视图滑动切换类的入门实例教程

ViewPager引入示例 首先让大家有个全局的认识,直接上个项目,看看仅仅通过这几行代码,竟然就能完成如此强悍的功能. 效果图: 实现了三个view间的相互滑动. 第一个VIEW向第二个VIEW滑动.第二个VIEW向第三个VIEW滑动 一.新建项目,引入ViewPager控件 ViewPager.它是google SDk中自带的一个附加包的一个类,可以用来实现屏幕间的切换. 1.在主布局文件里加入 <RelativeLayout xmlns:android="http://schemas

android-安卓文件下载失败,一直找不到原因。求赐教

问题描述 安卓文件下载失败,一直找不到原因.求赐教 09-18 03:33:38.543: W/InputMethodManagerService(1021): Window already focused ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@b647a448 attribute=null 解决方案 就不能多提供一点 LOG,或者直接上你下载的代码 解决方案二: 错误信息太

模拟器能够通过服务器读取数据库信息,真机连接不上...

问题描述 模拟器能够通过服务器读取数据库信息,真机连接不上... 在eclipse写了一个和服务器上传和读取数据的项目,在模拟器里可以实现,但是在真机上的时候,只能够显示操作的界面,却不能实现和服务器的数据交换,求指导 解决方案 地址都改为本机的ip地址,连接的同一个路由器 而且防火墙也没有开 手机能上网 解决方案二: 真机中估计界面代码显示有问题 多加一些调试信息来分析 解决方案三: 应该是IP设置有问题, 测试下手机浏览器里面输入你访问的地址,看看能不能打开 解决方案四: 12-17 12: