一:建立工程
這邊有模板可以選擇,可以直接選擇empty activity。
二:配置
應用名稱
程式包名稱
本地位址
三:進入工程
首先布局layout
上圖各部分收縮省略圖
線性布局命令:linearlayout
插圖:imageview
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
//高度寬度自適應
android:orientation=
"horizontal"
>
//橫向布局
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginleft=
"15dp"
//距離左邊15dp
android:layout_margintop=
"15dp"
android:text=
"姓名:"
android:textsize=
"30dp"
/>
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginleft=
"15dp"
android:layout_margintop=
"15dp"
android:text=
"代用名"
android:textsize=
"30dp"
/>
<
/linearlayout>
// 線性布局收尾
圖示配置資訊也是包含在androidmanifest.xml檔案中
我在res資料夾下又發現了乙個mipmap-anydpi-v26資料夾
android:roundicon=
"@mipmap/ic_launcher_round"
//圓形圖示
android:icon =
"@mipmap/icon"
//普通圖示
mipmap-anydpi-v26是為了android8.0新增的
2、更改應用名
應用名配置資訊也是包含在androidmanifest.xml檔案中
android:allowbackup=
"true"
android:icon=
"@mipmap/title"
//普通圖示
android:label=
//應用名
android:roundicon=
"@mipmap/title"
//圓形圖示
android:supportsrtl=
"true"
android:theme=
>
".mainactivity"
>
"android.intent.action.main"
/>
"android.intent.category.launcher"
/>
<
/intent-filter>
<
/activity>
<
Android Studio 學習第一天
元素 說明manifest 根節點,描述了package中所有的內容 xmlns android 包含命名空間的宣告,其屬性值為表示android中的各種標準屬性在該xml檔案中使用,它提供了大部分元素中的資料 package 宣告應用程式包 android icon 應用程式圖示 android ...
Android Studio 使用教程 一
從eclipse中遷移專案到android studio 如果您之前已經使用eclipse開發android專案,並希望遷移到android studio,你應該通過從eclipse中匯出您的專案生成gradle 構建檔案。然後,您就可以將您的專案匯入到android studio了。一.從ecli...
AndroidStudio錯誤彙總(一)
1.android studio 出現value2,value1關鍵字的錯誤 android studio 出現value2,value1關鍵字的錯誤 解決辦法 檢視file project structure檢視是否重複匯入的v4包或者其他包 2.svn不能更新或者提交的時候 解決 刪除.svn中...