Android学习之布局

Android常见的五大布局:

1.LinearLayout;水平或垂直布局

2.FrameLayout;从屏幕左上方布局

3.TableLayout;行列布局

4.RelativeLayout;相对其他组件布局

5.AbsoluteLayout;绝对坐标布局

源码下载链接:Android布局

效果图:

MainActivity:

LinearActivity:

FrameActivity:

TableActivity:

RelativeLayout:

“线性”按钮实现跳转部分代码,其他按钮类似:

    //
    private Button btn_linear;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		       
        //
		btn_linear = (Button) findViewById(R.id.btn_linear);
		//
		btn_linear.setOnClickListener(new View.OnClickListener() {
			@Override
			public void onClick(View v) {
				Intent i = new Intent(MainActivity.this, LinearActivity.class);
				startActivity(i);
			}
		});
	}

参考:

http://liangruijun.blog.51cto.com/3061169/632532/

http://www.cnblogs.com/waitingbar/p/4409298.html

时间: 2024-09-30 10:36:36

Android学习之布局的相关文章

Android学习5—布局简介

Android界面的布局主要有四种,分别为RelativeLayout.LinearLayout.TableLayout.FrameLayout,接下来分别介绍这些布局如何使用(为了简单起见,接下来的介绍工作中,我分别附上布局文件的代码以及效果图,供大家参考) 一:RelativeLayout <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="htt

android 学习 之 布局(上)

学习安卓布局前,先了解三个属性值: 1.fill_parent: 设置一个构件的布局为fill_parent将强制性地使构件扩展,以填充布局单元内尽可能多的空间 2.match_parent: Android2.2中match_parent和fill_parent是一个意思 .两个参数意思一样,match_parent更贴切,于是从2.2开始两个词都可以用.那么如果考虑低版本的使用情况你就需要用fill_parent了 3.wrap_content:         设置一个视图的尺寸为wrap

Android学习笔记-----------布局(四)

GridLayout(网格布局) 网格布局是android4.0之后出现的新布局,在使用可能会报错,需要将清单文件中的android:minSdkVersion设置为14 网格布局和LinerLayout一样具有水平方向和垂直方向两种布局方式.当控件排满后会自动换行或者换列. 使用前需要先指定rowCount(行数),columnCount(列数) 通过组件的layout_row和layout_column属性指定控件的行号和列号,这里要注意索引是从0开始的 通过组件的layout_column

Android学习——LinearLayout布局实现居中、左对齐、右对齐

android:orientation="vertical"表示该布局下的元素垂直排列: 在整体垂直排列的基础上想要实现内部水平排列,则在整体LinearLayout布局下再创建一个LinearLayout布局. 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/r

android 学习Layout布局的使用

android 常用布局 LinearLayout(线性布局) 线性的 垂直的 水平的RelativeLaytout(相对布局) 最灵活的TableLayout(表格布局) 使用GridView代替AbsoluteLayout(绝对布局) 最好不要使用 绝对坐标Framelayout(帧布局) 布局叠加时使用 比如视频缓冲的环形滚动条 使用频次Absolute<Table<Frame<Linear<Relative android布局原则(1)尽量多的使用线性布局和相对布局不要使用

Android学习笔记-----------布局(一)

LinearLayout(线性布局) 线性布局是android开发中的常用布局. 通过设置android:orientation属性来确定线性布局的方向,vertical为垂直方向,horizontal为水平方向. 由于布局的默认对齐方式是左上,若想设置控件的对齐方式,可以通过设置android:gravity属性和android:layout_gravity属性来确定控件的对齐方式. android:gravity属性是设置本元素中的子元素相对于它的对齐方式. android:layout_g

Android学习----五大布局

1.LinearLayout 线性布局 android:orientation="horizontal" 制定线性布局的排列方式 水平 horizontal 垂直 vertical gravity 控制当前控件内容显示区域 layout_gravity 当前控件在父元素的位置 Layout_weightSum Layout_weight 额外空间分配(权重) android:visibility="invisible" 控制布局是否显示 显示 visible 不显示

android学习code3 布局上

andriod系统是一个基于事件驱动行为一种系统andirod添加事件驱动有四种方式 第一种自定义一个内部类实现OnclickListenerprivate class MyListenner implements OnclickListener{ public void OnClick(View w){   } }然后onCreate 方法 调用Button dail=(Button)this.findByViewId(R.Id.et_numer);dail.setOnClickListnen

android 学习 之 布局(下)LinearLayout,RelativeLayout,TableLayout,FrameLayout

<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="match_parent" android:background=