支持不同设备(3)支持不同版本

来源:互联网 发布:信托网络个人理财产品 编辑:程序博客网 时间:2024/04/30 18:14

定义最小和目标版本

<manifest xmlns:android="http://schemas.android.com/apk/res/android" ... >    <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="15" />    ...</manifest>


在运行时检验版本

private void setUpActionBar() {    // Make sure we're running on Honeycomb or higher to use ActionBar APIs    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {        ActionBar actionBar = getActionBar();        actionBar.setDisplayHomeAsUpEnabled(true);    }}


 

使用平台的style和Theme

对话框形式的Activity

<activity android:theme="@android:style/Theme.Dialog">


 

Activity透明背景:

<activity android:theme="@android:style/Theme.Translucent">


 

等等
0 0