android
文章平均质量分 56
小鹰丶
这个作者很懒,什么都没留下…
展开
-
关于Wrong orientation? No orientation specified问题
创建一个android程序之后,发现xml文件头出现了这个错误: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原创 2014-12-26 13:39:34 · 2401 阅读 · 1 评论 -
Android启动找不到activity问题
小白又来袭,刚才新建了一个项目,自己写了java和xml文件,但启动的时候发现出现如下error项:No Launcher activity found!The launch will only sync the application package on the device!程序死活起不来,写的也没有问题,研究了一下,发现AndroidManifest.xml文件中没原创 2014-12-26 15:56:22 · 6083 阅读 · 0 评论 -
一些常用距离单位与内外边距的关系
常用距离单位 px,dp,sppx:像素dpi:dots per inch,分辨率,(heigth^2 + width^2)^(1/2) / size,每个英寸上有多少像素dp:dip(Device Independent pixels)换算公式:px = dp * (dpi / 160),在dpi为160的屏幕上:1dp = 1pxsp:scaled pix原创 2014-12-28 15:10:33 · 849 阅读 · 0 评论 -
android对按钮的监听(基础)
在布局文件中创建一个按钮对象 <Button android:id="@+id/button" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="button"/>在java文件中创建一原创 2014-12-28 14:02:24 · 395 阅读 · 0 评论 -
新建blank工程后没有相应文件
现在的ADT新建blank工程后并没有生成相应的文件,查了查,也不是我的软件问题,大多如此,需要自己写一个。个人觉得小麻烦,贴上代码,方便使用。布局文件:<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.an原创 2014-12-28 14:08:39 · 335 阅读 · 0 评论 -
一些学习笔记,自用
通用方法:1、在XML文件中创建一个对象2、在主函数代码中创建相同类型并用findViewById通过寻找R.id引用该对象3、创建一个内部类并且implements相应监听方法,覆写4、创建相应监听对象,并且使用set方法装载监听多选框: CheckBox1、在xml文件中使用标签2、在代码当中使用CheckBox的对象表示3、常用OnClic原创 2014-12-29 23:13:39 · 477 阅读 · 0 评论