image.png
目录
LinearLayout
线性布局,顾名思义,指的是整个Android布局中的控件摆放方式是以线性的方式摆放的,
代码中加载主界面布局是从onCreate
开始的:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
代码中的R.layout.activity_main
就是添加的资源配置表.位置在:
image.png
现在的Android Studio支持拖拽添加控件,个人感觉不是很好使,尴尬..
image.png
点击LinearLayout
添加一个horizontal类型的线性布局:
image.png
为LinearLayout
添加三个按钮:
image.png
切换到Design
模式,看下效果:
image.png
修改后的xml文件如下:
代码语言:javascript复制<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<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"
tools:context="com.example.activitylife.MainActivity"
android:orientation="horizontal">
<Button
android:id="@ id/button8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="1" />
<Button
android:id="@ id/button9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="2" />
<Button
android:id="@ id/button7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="3" />
</LinearLayout>
</android.support.constraint.ConstraintLayout>
为线性布局添加褐黑色北背景
在xml文档中添加代码:
image.png
代码:
代码语言:javascript复制android:background="#000000"
然后保存下,可以看到Android Studio中发生了变化:
image.png
编译后,运行看下效果:
image.png
基本和设计的一抹一样.O(∩_∩)O
参考
Android的学习第六章(布局一LinearLayout)