Android開發基本篇(一)

來源:互聯網
上載者:User

一:怎麼在搭建Android開發環境?

      首先下載JDK並配置環境變數,本博文中有相關文章,並下載Java開發工具,推薦使用Eclipse或MyEclipse,安裝完成後,點擊“help”,選擇“ Install new softWare ”然後彈出新對話方塊,點擊右邊的“add”,出現如下畫面,然後在填入以下內容:

Name可以隨便填,下面的地址為:http://dl-ssl.google.com/android/eclipse/ 點擊OK後,

 

全選那些工具,然後一步步進行,等它下載完成就可。如果以後什麼疑問的地方歡迎留言。

二:怎麼在Android模擬器中添加軟體?

在Windows平台下首先找到android-sdk-windows目錄,即為android開發目錄。然後找到adb.exe,

然後利用Windows裡面的Cmd命令提示字元,然後建議將.apk檔案

剪下到adb.exe相同的目錄下,然後在CMD中輸入以下內容:

首先輸入:CD 切換到你安裝的adb執行程式的目錄  假如你安裝的目錄為E:\android 則為輸入:cd “E:\android\platform-tools”

然後輸入: adb install **.apk(注意此處的**指你的應用程式名稱)

三:Android中的控制項一些控制項屬性和表示?

安卓中最常見的布局是採用的xml方法,另外還有HTML布局,個人認為布局精美的是採用HTML5布局,但是經典的還是用xml,在源檔案中res\Layout檔案夾下面注意放置xml布局檔案:

xml布局最常見的是LinearLayout和RelativeLayout

共有屬性:
java代碼中通過btn1關聯次控制項
android:id="@+id/btn1"

控制項寬度
android:layout_width="80px"    //"80dip"或"80dp"
android:layout_width =“wrap_content”
android:layout_width =“match_parent” 

控制項高度
android:layout_height="80px"    //"80dip"或"80dp"
android:layout_height =“wrap_content”
android:layout_height =“match_parent”

控制項排布
android:orientation="horizontal”
android:orientation="vertical“

控制項間距
android:layout_marginLeft="5dip"      //距離左邊
android:layout_marginRight="5dip"      //距離右邊
android:layout_marginTop="5dip"      //距離上面
android:layout_marginRight="5dip"      //距離下面

控制項顯示位置
android:gravity="center"    //left,right, top, bottom
android:gravity="center_horizontal"

android:layout_gravity是本元素對父元素的重力方向。
android:layout_gravity屬性則設定控制項本身相對於父控制項的顯示位置
android:gravity是本元素所有子項目的重力方向。

android:layout_gravity="center_vertical"
android:layout_gravity="left"
android:layout_gravity="left|bottom"

TextView中文本字型
android:text="@String/text1"    //在string.xml中定義text1的值
android:textSize="20sp"
android:textColor=”#ff123456”
android:textStyle="bold"    //普通(normal), 斜體(italic),粗斜體(bold_italic)

定義控制項是否可見
android:visibility=”visible”     //可見
android:visibility=”invisible” //不可見,但是在布局中佔用的位置還在
android:visibility=”gone” //不可見,完全從布局中消失

定義背景圖片
android:background="@drawable/img_bg"    //img_bg為drawable下的一張圖片

seekbar控制項背景圖片及最大值
android:progressDrawable="@drawable/seekbar_img" 
android:thumb="@drawable/thumb"           
android:max = "60"

 

僅在RelativeLayout中有效:
在父親布局的相對位置
android:layout_alignParentLeft="true"     //在布局左邊
android:layout_alignParentRight="true"    //在布局右邊
android:layout_alignParentTop="true"     //在布局上面
android:layout_alignParentBottom="true "  //在布局的下面

在某個控制項的相對位置
android:layout_toRightOf="@id/button1"  //在控制項button1的右邊,不僅僅是緊靠著
android:layout_toLeftOf="@id/button1"   //在控制項button2的左邊,不僅僅是緊靠著
android:layout_below="@id/button1 "     //在控制項button1下面,不僅僅是正下方
android:layout_above=“@id/button1”   //在控制項button1下面,不僅僅是正下方

定義和某控制項對奇
android:layout_alignTop=”@id/button1”  //和控制項button1上對齊
android:layout_alignBottom=”@id/button1”  //和控制項button1下對齊
android:layout_alignLeft=”@id/button1”  //和控制項button1靠左對齊
android:layout_alignRight=”@id/button1”  //和控制項button2靠右對齊

android:layout_centerHorizontal="true"        //水平置中
android:layout_centerVertical="true"
android:layout_centerInParent="true"

僅在LinearLayout中有效
設定控制項在一排或一列中所佔比例值
android:layout_weight="1"

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.