1. 程式人生 > >Button樣式

Button樣式

android fin tran tps 透明度 透明 技術 class 設置

Button或者ImageButton的背景設為透明或者半透明 
半透明<Button android:background="#e0000000" ... />
透明<Button android:background="#00000000" ... />

顏色和不透明度 (alpha) 值以十六進制表示法表示。任何一種顏色的值範圍都是 0 到 255(00 到 ff)。對於 alpha,00 表示完全透明,ff 表示完全不透明。表達式順序是“aabbggrr”,其中“aa=alpha”(00 到 ff);“bb=blue”(00 到 ff);“gg=green”(00 到 ff);“rr=red”(00 到 ff)。例如,如果您希望對某疊加層應用不透明度為 50% 的藍色,則應指定以下值:7fff0000

設置背景圖片透明度(超簡單)
Java代碼
? View v = findViewById(R.id.content);//找到你要設透明背景的layout 的id
? v.getBackground().setAlpha(100);//0~255透明度值
設置一個按鈕為透明,
(1)修改配置文件 <Button
android:id="@+id/btnAppMore"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="詳細信息>>"
android:layout_alignParentRight="true" android:layout_marginLeft="150dp"

android:background="@android:color/transparent" />
設置完透明按鈕以後,發現按鈕不見了……
(2)註意,按鈕默認顏色同手機背景色(黑色)一樣,按鈕的文字默認也為黑色,這裏,我們可以通過activity的oncreate()中設置一下按鈕的字體顏色:
btn=(Button)findViewById(R.id.btnAppMore); btn.setTextColor(Color.WHITE);
其實,透明也可以通過Java完成,btn.setBackgroundColor(Color.TRANSPARENT);

圖片按鈕,下方帶文字

<Button
                android:id="@+id/list_popWindow_setting"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:background="#0000"
                android:drawableTop="@drawable/tou_xiang"
                android:padding="5dp"
                android:text="sadsasda"
                android:layout_weight="1"/>

技術分享

Button樣式