Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android ApiDemos示例解析(16) App->Activity->Translucent

Android ApiDemos示例解析(16) App->Activity->Translucent

編輯:Android開發教程

Activity分類示例的最後幾個例子是來顯示半透明Activity。例子大同小異。實現Activity的半透明效果主要是通過Style和 Theme來實現的。

看看TranslucentActivity 在AndroidManifest.xml中的定義:

<activity android:name=”.app.TranslucentActivity”

android:label=”@string/activity_translucent”

android:theme=” @style/Theme.Translucent”>

<intent-filter>

< action android:name=”android.intent.action.MAIN” />

<category android:name=”android.intent.category.SAMPLE_CODE” />

< /intent-filter>

< /activity>

它使用了Theme.Translucent 主題,這個主題定義在res/styles.xml

<!– A theme that has a translucent background. Here we explicitly specify

that this theme is to inherit from the system’s translucent theme,

which sets up various attributes correctly. –>

<style name=”Theme.Translucent” parent=”android:style/Theme.Translucent”>

<item name=”android:windowBackground” >@drawable/translucent_background</item>

< item name=”android:windowNoTitle” >true</item>

< item name=”android:colorForeground”>#fff</item>

< /style>

它通過繼承系統主題android:style/Theme.Translucent,然後加以修改。@drawable/translucent_background定義在 Colors.xml中,顏色值為#e0000000 ,alpha值,也就是透明度為#e0(半透明)。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved