LinearLayout linearLayoutMain = new
LinearLayout(this);// 自定义一个布局文件 linearLayoutMain.setLayoutParams(new
LayoutParams( L...
分类:
其他好文 时间:
2014-06-06 23:20:38
阅读次数:
237
使用RelativeLayout替代掉Item中的层次过多的LinearLayout;在快速滚动的时候对于一些比较消耗系统资源的动作不进行执行。。。
分类:
移动开发 时间:
2014-06-06 16:29:31
阅读次数:
227
一、五大布局 1、LinearLayout线性布局 2、RelativeLayout相对布局
3、AbsoluteLayout绝对布局 4、TableLayout表格布局 5、FrameLayout帧布局二、LinearLayout线性布局
1、android:orientation="...
分类:
移动开发 时间:
2014-06-06 12:23:38
阅读次数:
179
在编写安卓登录界面时,我们如何记住密码,方便下一次登录呢?
首先,先创建一个安卓项目(我的版本是4.4.2的),名字为"记住密码"
然后在res文件夹下找到layout文件夹,找到activity_main.xml或fragment_main.xml,在里面输入或拖拽按钮
<LinearLayout xmlns:android="http://schemas.android.com/...
分类:
移动开发 时间:
2014-06-05 11:12:24
阅读次数:
323
Android中录音有三种方式:
一、使用意图,最简单但不灵活(本文章只讲意图录音)
二、使用MediaPlayer类,他更加难于实现,但是提供了更多的灵活性
三、使用AudioRecord类,其提供了最大的灵活性,但为我们所做的工作最少。
源代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/a...
分类:
移动开发 时间:
2014-06-05 01:05:04
阅读次数:
297
上一篇讲到了使用意图录音,这篇文章将使用MediaRecorder类来录音,从而提供更多的灵活性。
效果图:
源代码奉上:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"...
分类:
移动开发 时间:
2014-06-05 00:35:30
阅读次数:
387
1.父控件中含有多个子控件时,往往遵循长子优先的原则,即长子如果很大可能占满父空间,使次子们出局;
2.假设TableLayout有2行,其中一行未设定列间长度比例,而另一行设定了,则未设定行可能也会遵循设定行的列间长度比例;
3.在某个区域(如TableLayout中某个单元格)显示某张超大的图片,希望图片总是自适应单元格而不是把单元格撑爆。解决方案:将单元格放在LinearLayout...
分类:
移动开发 时间:
2014-06-04 13:16:06
阅读次数:
390
界面效果
应用的权限
布局文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
andr...
分类:
移动开发 时间:
2014-06-03 00:45:02
阅读次数:
303
布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="...
分类:
移动开发 时间:
2014-06-01 04:04:04
阅读次数:
490
LinearLayout linearLayoutMain = new
LinearLayout(this);//自定义一个布局文件 linearLayoutMain.setLayoutParams(new
LayoutParams( LayoutParams.MATCH_PARENT, ...
分类:
移动开发 时间:
2014-05-26 16:22:12
阅读次数:
257