ANDROID_MARS学习笔记_S01_003layout初步

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ANDROID_MARS学习笔记_S01_003layout初步相关的知识,希望对你有一定的参考价值。

一、layout介绍

技术分享技术分享

二、测试linear_layout
1.activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#ff0000"
        android:text="第一个"/>
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#0000ff"
        android:text="第二个"/>

</LinearLayout>

  

2.MainActivity.java

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        //setContentView(R.layout.activity_main);
        setContentView(R.layout.first_layout);

 

  

 

以上是关于ANDROID_MARS学习笔记_S01_003layout初步的主要内容,如果未能解决你的问题,请参考以下文章

ANDROID_MARS学习笔记_S02_003_AutoCompleteTextView

ANDROID_MARS学习笔记_S02_001_Spinner

ANDROID_MARS学习笔记_S01_006ImageView

ANDROID_MARS学习笔记_S01_012_RatingBar

ANDROID_MARS学习笔记_S01_005CheckBox

ANDROID_MARS学习笔记_S01_011ProgressBar