美文网首页Android开发Android进阶之路
Android应用开发笔记之线性布局LinearLayout(二

Android应用开发笔记之线性布局LinearLayout(二

作者: Lee_5566 | 来源:发表于2019-07-02 19:52 被阅读1次
    image.png

    目录

    第一篇:Android应用开发笔记之Android Studio第一个程序(一)
    第二篇:Android应用开发笔记之线性布局LinearLayout(二)

    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文件如下:
    <?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

    代码:

    android:background="#000000"
    

    然后保存下,可以看到Android Studio中发生了变化:


    image.png

    编译后,运行看下效果:


    image.png

    基本和设计的一抹一样.O(∩_∩)O

    参考

    Android的学习第六章(布局一LinearLayout)

    相关文章

      网友评论

        本文标题:Android应用开发笔记之线性布局LinearLayout(二

        本文链接:https://www.haomeiwen.com/subject/xrgwcctx.html