2012-05-28 09:54来源:武汉北大青鸟光谷校区作者:027hpit
武汉北大青鸟安卓培训:本示例介绍如何使用Android系统样式和自定义样式创建半透明界面。
1. 定义清单文件(AndroidManifest.xml)
package="my.andriod.test"
android:versionCode="1"
android:versionName="1.0">
android:label="@string/app_name"
android:theme="@style/Theme.Translucent">
2. 定义字符串资源(strings.xml)
Hello World, TranslucentActivity!
TranslucentActivity
App/Activity/Translucent
Example of how you can make an
activity have a translucent background, compositing over
whatever is behind it.
3. 定义自定义样式(values/styles.xml)
4. 定义半透明颜色(colors.xml)
#e0000000
5. 定义布局文件(translucent_background.xml)
android:layout_width="match_parent" android:layout_height="match_parent"
android:gravity="center_vertical|center_horizontal"
android:text="@string/translucent_background"/>
6. 创建Activity(TranslucentActivity.java)
package my.andriod.test;
import android.app.Activity;
import android.os.Bundle;
publicclass TranslucentActivity extends Activity {
/** Activity次创建时,调用这个方法 */
@Override
publicvoid onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//填充布局
setContentView(R.layout.translucent_background);
}
}
武汉北大青鸟武汉宏鹏光谷校区android技术工作小组将继续为大家介绍更多有关安卓的信息,欢迎关注。
Copyright (c) 2006-2021 武汉宏鹏教育咨询有限公司 版权所有 All Rights Reserved.