Android界面的布局主要有四种,分别为RelativeLayout、LinearLayout、TableLayout、FrameLayout,接下来分别介绍这些布局如何使用(为了简单起见,接下来的介绍工作中,我分别附上布局文件的代码以及效果图,供大家参考) 一:RelativeLayout .....
分类:
移动开发 时间:
2014-07-27 22:43:19
阅读次数:
343
先看效果:
布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout...
分类:
移动开发 时间:
2014-07-27 11:39:04
阅读次数:
238
一、资源文件:1、文字选择器: 2、背景选择器: 3、属性文件: ...
分类:
其他好文 时间:
2014-07-27 09:48:12
阅读次数:
276
通常需要修改textview被选中时文字颜色,总是没效果,有以下几种方式可以实现:在textview中,增加选择器: android:textColor="@drawable/text_wbcolor_selector"1、可以增加点击事件,在后台设置,不管有没有点击事件: textview.set...
分类:
其他好文 时间:
2014-07-27 09:42:02
阅读次数:
289
1、LinearLayout是子view均为单方向的,即均为水平或垂直方向的布局。你可以用android:orientation属性来定义layout方向所有子view都是一个挨着一个的,所以一个垂直列表,不管它本身多宽,同时只能有一行。若是水平列表,则都等高。2、LayoutWeight用来操控各...
分类:
移动开发 时间:
2014-07-22 22:46:54
阅读次数:
209
1.简单实例
(1).在res/values文件下定义一个attrs.xml文件
(2).布局文件使用<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.andr...
分类:
移动开发 时间:
2014-07-22 14:33:45
阅读次数:
232
在安卓开发中我们常用的布局方式有这么几种: 1.LinearLayout ( 线性布局 ) :(里面只可以有一个控件,并且不能设计这个控件的位置,控件会放到左上角) 线性布局分为水平线性和垂直线性二者的属性分别为: android:orientation= " horizontal " andr.....
分类:
移动开发 时间:
2014-07-21 10:16:48
阅读次数:
219
//1.利用LayoutInflater的inflate动态加载XML mLinearLayout = (LinearLayout)findViewById(R.id.LinearLayout_ID); LayoutInflater layoutInflater = LayoutInflater.....
分类:
移动开发 时间:
2014-07-21 00:13:14
阅读次数:
422
TextView textView= (TextView)findViewById(R.id.textview); LinearLayout.LayoutParams linearParams =(LinearLayout.LayoutParams) textView.getLayoutPara.....
分类:
移动开发 时间:
2014-07-20 22:30:37
阅读次数:
320
…… ……我们要做的就是自定义一个GridView控件并插入到中间的LinearLayout中public class MyGridView extends GridView{public MyGridView(Context context, AttributeSet attrs) ...
分类:
其他好文 时间:
2014-07-20 22:04:22
阅读次数:
195