安卓學習筆記 -- (安裝環境) Android Studio安裝配置、環境搭建詳細步驟及基本使用 Android Studio和SDK官方開發工具下載 Android Studio教程從入門到精通 Android開發-之第一個程式:HelloWorld!
1、下載Android Studio安裝配置、環境搭建詳細步驟及基本使用
https://www.cnblogs.com/yanglh6-jyx/p/Android_AS_Configuration.html
https://blog.csdn.net/k491022087/article/details/72934862
https://blog.csdn.net/qq_33850438/article/details/52424505
https://blog.csdn.net/qq_32507527/article/details/63684287
https://www.cnblogs.com/yanglh6-jyx/p/Android_AS_Configuration.html#_label2
https://www.cnblogs.com/xdp-gacl/p/4322165.html (好像下載Android studio 含有sdk 的版本 sdk就已經下載好了 不用再下了)
https://blog.csdn.net/cl18652469346/article/details/56489555
https://blog.csdn.net/qq_34584049/article/details/78259191
eclipse+ADT+SDK
https://www.cnblogs.com/xdp-gacl/p/4322165.html
https://www.cnblogs.com/uumiss/articles/6767310.html
Android studio(AS)配置sdk、jdk路徑
https://blog.csdn.net/qq_26650589/article/details/53886117
Android Studio設定或修改Android SDK路徑
https://blog.csdn.net/wejfoasdbsdg/article/details/54579289
SDK環境變數配置:
https://blog.csdn.net/sinat_41661615/article/details/79730340
https://blog.csdn.net/Rflyee/article/details/8973529
https://jingyan.baidu.com/article/215817f79708c91eda14238a.html
https://jingyan.baidu.com/article/48b558e31fb9867f38c09a8f.html
Android Studio安裝和一些基礎設定
https://blog.csdn.net/qq_34584049/article/details/78259191
http://www.cnblogs.com/liuhongfeng/archive/2015/12/30/5084896.html
下載Android Studio地址:
http://tools.android-studio.org/index.php
http://www.android-studio.org/
https://developer.android.google.cn/studio/
http://www.android-studio.org/index.php/download
網址:http://www.android-studio.org/index.php/download/hisversion
安裝教程: http://www.cnblogs.com/liuhongfeng/archive/2015/12/30/5084896.html
https://www.cnblogs.com/laughingQing/p/5848425.html
https://www.cnblogs.com/laughingQing/p/5856943.html
https://www.cnblogs.com/xiao-chuan/p/6067162.html
https://blog.csdn.net/jsy1997/article/details/74905540/ android studio 第一個安卓程式 (感覺講的不好)
LinearLayout(線性佈局)
②weight屬性詳解:
這個時候就會有疑問了,怎麼會這樣,這比例是2:1吧,那麼three去哪了?程式碼裡面明明有 three的啊,還設定了3的,而1和2的比例也不對耶,1:2:3卻變成了2:1:0,怎麼會這樣呢? 答:這裡其實沒那麼簡單的,還是需要我們計算的,網上給出的演算法有幾種,這裡就給出筆者 覺得比較容易理解的一種: step 1:個個都是fill_parent,但是螢幕只有一個啦,那麼1 - 3 = - 2 [1] fill_parent step 2:依次比例是1/6,2/6,3/6 step 3:先到先得,先分給one,計算: 1 - 2([1]式得到的數) * (1/6) = 2/3 fill_parent 接著到two,計算: 1 - 2 * (2/6) = 1/3 fill_parent 最後到three,計算 1 - 2 * (3/6) = 0 fill_parent step 4:所以最後的結果是:one佔了兩份,two佔了一份,three什麼都木有 以上就是為什麼three沒有出現的原因了,或許大家看完還是有點蒙,沒事,我們舉多幾個例子試試就知道了!
在android studio 中新增圖片資源
初次使用Android Studio問題,Android Studio往專案中新增圖片
Android studio2.0在app中設定背景圖片及新增圖片資源
https://ask.csdn.net/questions/253089
https://blog.csdn.net/dbc_121/article/details/79171061
在android studio 中將專案打包成apk檔案:
https://blog.csdn.net/wyg1230/article/details/77529465/
https://www.cnblogs.com/jiuyi/p/6098589.html
https://jingyan.baidu.com/article/c843ea0bbfae3777931e4ac3.html
對android studio 的各部分的基本介紹:
https://blog.csdn.net/mm860659/article/details/77008435 (檔案介紹 和一些對專案的常規操作)