Android開發隨手筆記

來源:互聯網
上載者:User
文章目錄
  • Button或者ImageButton的背景設為透明或者半透明
  • 半透明<Button android:background="#e0000000" ... /> 
  • 透明<Button android:background="#00000000" ... />
  • 設定背景圖片透明度(超簡單)

1、查看優秀的android應用的UI設計,切圖等,只需要下載該應用的apk,解壓縮包,即可看到該應用中所有的資源了。

2、透明色

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代碼

  1. View v = findViewById(R.id.content);//找到你要設透明背景的layout 的id
  2. v.getBackground().setAlpha(100);//0~255透明度值

3、統一設定ImageButton的背景樣式,滑鼠按下,按下效果等。

首先用ps繪製兩張圖片,一張是滑鼠按下的背景圖片,一張透明png(必須透明,以便實用與不同地方,也就是android的#00000000顏色值,效果如下)

[原創:轉載請註明 http://yj.chinacloudtech.com http://www.cnblogs.com/qidian10]

下面定義一個drawable/btnstyle.xml 內容如下:

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android">    <item android:state_focused="true" android:state_pressed="false"        android:drawable="@drawable/btnon" />    <item android:state_focused="true" android:state_pressed="true"        android:drawable="@drawable/btnon" />    <item android:state_focused="false" android:state_pressed="true"        android:drawable="@drawable/btnon" />    <item android:drawable="@drawable/btnbg" /></selector>

btnbg就是透明圖片,btnon是按下片。

然後在引用樣式的地方,加上屬性:android:background="@drawable/btnstyle" 即可。

 4、android 960*540螢幕適配 問題解決

功能資訊清單檔裡(註:一級目錄裡添加)
<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"package="com.yj" android:versionCode="1" android:versionName="1.0">
.....<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="false" android:smallScreens="true" ></supports-screens>
.......
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.