概述
1.Android是Google開發(fā)的操作系統(tǒng)贰镣。
- Android開發(fā)是移動(dòng)應(yīng)用開發(fā)的表現(xiàn)形式之一呜象。
項(xiàng)目精簡(jiǎn)流程
開發(fā)工具
Android Studio
- 下載安裝JDK
- 為什么使用Android Studio?
Android Studio 是Google自己退出的Android集成開發(fā)工具,并且停止對(duì)Eclipse的支持碑隆。
項(xiàng)目結(jié)構(gòu)
!!
布局管理器
- 線性布局(LinearLayout)
- 相對(duì)布局(RelativeLayout)
LinearLayout
常用屬性
android:id 布局標(biāo)識(shí)
android:layout_width 寬度
android:layout_height 高度
android:background 背景恭陡,顏色圖片控件等
android:layout_margin 外邊距
android:layout_padding 內(nèi)邊距
android:orientation 布局方向
android:gravity 布局開始位置
android:layout_weight 比重
效果圖
示例代碼
<LinearLayout 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"
android:orientation="vertical"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="200dp"
android:layout_height="200dp"
android:orientation="vertical"
android:background="#000000"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:paddingTop="50dp"
android:paddingBottom="10dp"
android:layout_marginLeft="15dp">
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ff0033"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:orientation="horizontal"
android:background="#0066FF"
android:layout_marginTop="20dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:gravity="center"
>
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#4CAF50"/>
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:background="#ff0033"/>
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
android:background="#FFC107"/>
</LinearLayout>
</LinearLayout>
RelativeLayout
常用屬性
android:layout_toLeftOf 在誰(shuí)的左邊
android:layout_toRightOf 在誰(shuí)的右邊
android:layout_alignBottom 底部對(duì)齊
android:layout_alignParentBottom 父控件底部對(duì)齊
android:layout_below 在誰(shuí)的下面
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:id="@+id/view_1"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="#000000"
/>
<View
android:id="@+id/view_2"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="#F44336"
android:layout_below="@id/view_1"/>
<!--android:layout_toRightOf="@id/view_1"-->
<LinearLayout
android:id="@+id/view_3"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="#0066ff"
android:layout_below="@id/view_2"
android:orientation="horizontal"
android:padding="15dp"
>
<View
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#FF0033"
/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:padding="15dp"
>
<View
android:id="@+id/view_4"
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#9C27B0"
/>
<View
android:id="@+id/view_5"
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#9C27B0"
android:layout_toRightOf="@id/view_4"
android:layout_marginLeft="10dp"
/>
</RelativeLayout>
</LinearLayout>
</RelativeLayout>