。布局文件如下 让输入框的宽度占屏幕宽度的3/4,发送按钮的宽度占屏幕宽度1/4。但是当输入的文字过多并且关闭输入键盘或者打开输入键盘的时候,输入框的宽度会挤压发送按钮,当文字的宽度达到一定宽...
分类:
移动开发 时间:
2015-07-31 17:45:52
阅读次数:
181
import android.content.Context;import android.util.AttributeSet;import android.widget.ListView;/** * Created by wanqi on 15-7-20. */public class Scrol...
分类:
移动开发 时间:
2015-07-20 12:45:18
阅读次数:
217
Android-优化UI性能(5)-优化布局文件
1,使用观察布局的工具:Hierarchy Viewer
这时Android用来观察布局的工具,层级观察器,
它是一个优秀的布局优化工具和观察工具
该工具在sdk目录下的tools文件夹
**2,使用布局优化工具:**lint以前叫做layoutopt API16后改为lint,来检测项目的问题
\sdk\tools\lint.bat...
分类:
移动开发 时间:
2015-07-09 16:19:32
阅读次数:
324
Android 运行到setContentView(R.layout.splash);总是出现如下的错误:java.lang.RuntimeException: Unable to start activity ComponentInfo{com.esri.localtiledlayer/com.l...
分类:
移动开发 时间:
2015-06-26 12:28:19
阅读次数:
231
编写一下Android界面的项目使用默认的Android清单文件Android布局文件 LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_widt...
分类:
移动开发 时间:
2015-06-20 20:53:06
阅读次数:
167
Android的布局风格 布局应该从外往里写
1.LinearLayout(线性布局)
xml version="1.0" encoding="utf-8"?>
LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"...
分类:
移动开发 时间:
2015-05-20 16:30:25
阅读次数:
218
(1) 在Android布局文件layout中设置分割线: (2) ListView有好几种风格的分隔线:设置方法: mListView.setDivider(getResources().getDrawable(android.R.drawable.alert_light_frame));关键是....
分类:
移动开发 时间:
2015-04-10 06:29:42
阅读次数:
179
一些新手经常看到布局文件中都有xmlns:android="http://schemas.android.com/apk/res/android"或者 xmlns:tools=http://schemas.android.com/tools 却不知道是什么意思。
其实它是告诉Android开发工具你准备使用Android命名空间里的一些通用属性。在所有Android XML设计文件中最外层的标记...
分类:
移动开发 时间:
2015-03-08 18:51:37
阅读次数:
154
在Android布局文件中,某些时候使用include标签会很多的好处1,对于稍微有点复杂的布局界面,将所有布局代码都写在一个xml文件中,界面会显得很冗余,可读性很差,这时可以分开使用include标签来处理2,当Activity需要用到同样的布局效果,也可以使用include标签处理,而不用把一...
分类:
移动开发 时间:
2015-02-12 20:00:15
阅读次数:
267
第一类:属性值 true或者 falseandroid:layout_centerHrizontal 水平居中android:layout_centerVertical 垂直居中android:layout_centerInparent 相对于父元素完全居中android:layout_alignP...
分类:
移动开发 时间:
2014-11-27 01:29:52
阅读次数:
278