編輯:關於Android編程
postInvalidate(); 界面刷新
一個list元素可能默認為48px
android:visibility="invisible"> 設置組件顯示visible 不顯示invisible 消失gone
android:background="@null" 設置組件無背景
android:layout_gravity="right|center_vertical" 向右並垂直居中
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/star" 將圖片設置在按鈕的上方
android:text="按鈕1"
/>
<include
android:id="@+id/vip_include_top"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
layout="@layout/top_1" /> 包含一個layout
<SlidingDrawer
android:id="@+id/sliding"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:content="@+id/allApps"
android:handle="@+id/imageViewIcon" a
ndroid:orientation="vertical"
> 抽屜式設計必須設置content(類容控件) handle(把手類容控件)
android:layout_alignParentBottom="true" 總是在父元素的底部
android:scrollbars="none" 不要滾動條
android:gravity: 是對view控件本身來說的,是用來設置view本身的文本應該顯示在view的什麼位置,默認值是左側
android:layout_gravity:是相對於包含改元素的父元素來說的,設置該元素在父元素的什麼位置
<Button android:layout_width="120dip"
android:layout_height="wrap_content"
android:text="切換程序"
style="@android:style/ButtonBar" 設置按鈕為按鈕條風格
android:id="@+id/btn7"
android:layout_weight="1" />
requestWindowFeature(Window.FEATURE_NO_TITLE); 設置無標題
在application 標簽中添加android:theme=”@android:style/Theme.NoTitleBar” 去掉所有Activity界面的標題欄
修改AndroidManifest.xml
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); 設置全屏
<resources>
<style name="tab_btn">
<item name="android:textAppearance">@style/tab_item_text_style</item>
<item name="android:gravity">center_horizontal</item>
<item name="android:background">@drawable/trans</item>
<item name="android:layout_width">0.0dip</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:button">@null</item>
<item name="android:layout_weight">1.0</item> 自定義按鈕的Style屬性
</style>
</resources>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:drawable="@drawable/input_normal" />
<item android:state_pressed="true" android:drawable="@drawable/input_normal" />
<item android:state_focused="true" android:drawable="@drawable/input_over" />
</selector> 定義組件得到焦點,點擊,激活的狀態
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#FFFFFF"
android:endColor="#000000"
android:angle="270" /> </shape> 設置Drawable漸變
setBackgroundResource(R.drawable.bg); 調用
//設置 Gallery樣式在BaseAdapter的getView中
TypedArray typedArray = context.obtainStyledAttributes(R.styleable.Gallery);
imageView.setBackgroundResource(typedArray.getResourceId(R.styleable.Gallery_android_galleryItemBackground, 0));
return imageView;
android:spacing="10dp" //Gallery間隔
第一類:屬性值為true或false
android:layout_centerHrizontal? 水平居中
android:layout_centerVertical?? 垂直居中
android:layout_centerInparent???相對於父元素完全居中
android:layout_alignParentBottom 貼緊父元素的下邊緣
android:layout_alignParentLeft?? 貼緊父元素的左邊緣
android:layout_alignParentRight? 貼緊父元素的右邊緣
android:layout_alignParentTop??? 貼緊父元素的上邊緣
android:layout_alignWithParentIfMissing? 如果對應的兄弟元素找不到的話就以父元素做參照物
第二類:屬性值必須為id的引用名”
android:layout_below????? 在某元素的下方
android:layout_above????? 在某元素的的上方
android:layout_toLeftOf?? 在某元素的左邊
android:layout_toRightOf? 在某元素的右邊
android:layout_alignTop?? 本元素的上邊緣和某元素的的上邊緣對齊
android:layout_alignLeft? 本元素的左邊緣和某元素的的左邊緣對齊
android:layout_alignBottom 本元素的下邊緣和某元素的的下邊緣對齊
android:layout_alignRight? 本元素的右邊緣和某元素的的右邊緣對齊
第三類:屬性值為具體的像素值,如30dip,40px
android:layout_marginBottom?????? 離某元素底邊緣的距離
android:layout_marginLeft???????? 離某元素左邊緣的距離
android:layout_marginRight??????? 離某元素右邊緣的距離
android:layout_marginTop????????? 離某元素上邊緣的距離
android:scaleType:android:scaleType是控制圖片如何resized/moved來匹對ImageView的size。
ImageView.ScaleType / android:scaleType值的意義區別:
CENTER /center? 按圖片的原來size居中顯示,當圖片長/寬超過View的長/寬,則截取圖片的居中部分顯示
CENTER_CROP / centerCrop? 按比例擴大圖片的size居中顯示,使得圖片長(寬)等於或大於View的長(寬)
CENTER_INSIDE / centerInside? 將圖片的內容完整居中顯示,通過按比例縮小或原來的size使得圖片長/寬等於或小於View的長/寬
FIT_CENTER / fitCenter? 把圖片按比例擴大/縮小到View的寬度,居中顯示
FIT_END / fitEnd?? 把圖片按比例擴大/縮小到View的寬度,顯示在View的下部分位置
FIT_START / fitStart? 把圖片按比例擴大/縮小到View的寬度,顯示在View的上部分位置
FIT_XY / fitXY? 把圖片不按比例擴大/縮小到View的大小顯示MATRIX / matrix 用矩陣來繪制,動態縮小放大圖片來顯示。
** 要注意一點,Drawable文件夾裡面的圖片命名是不能大寫的。
我仍然從實際工作中出發!最近需要在照相機裡面添加聲控拍照功能(語音拍照),在設置當中需要實現如下圖的效果: 其設置的語音拍照菜單功能描述如下: (1)當點擊語音拍照菜單
軟件工程由於需要不斷迭代開發,因此要對源代碼進行版本管理。Android源代碼工程(AOSP)也不例外,它采用Git來進行版本管理。AOSP作為一個大型開放源代碼工程,由
在上一篇關於ActionBar的博文中,我們知道了ActionBar是Android3.0的重要更新之一。本篇博文就來寫一個開發中經常用到的例子。用Act
package com.icq.spinnercity; import java.util.ArrayList; import java.util.List; imp