android activity透明主题,Android应用的全透明效果--Activity及Dialog的全透明
1.Activity全透明
同學(xué)給了這個有趣的代碼,現(xiàn)在公布出來。
先在res/values下建colors.xml文件,寫入:<?xmlversion ="1.0"encoding="UTF-8"?>
#9000
這個值設(shè)定了整個界面的透明度,為了看得見效果,現(xiàn)在設(shè)為透明度為56%(9/16)左右。
再在res/values/下建styles.xml,設(shè)置程序的風(fēng)格<?xml version="1.0" encoding="utf-8"?>
@color/transparent
true
@+android:style/Animation.Translucent
最后一步,把這個styles.xml用在相應(yīng)的Activity上。即在AndroidManifest.xml中的任意標(biāo)簽中添加android:theme = "@style/transparent"
如果想設(shè)置所有的activity都使用這個風(fēng)格,可以把這句標(biāo)簽語句添加在中。
最后運行程序,是不是發(fā)現(xiàn)整個界面都被蒙上一層半透明了。最后可以把背景色#9000換成#0000,運行程序后,就全透明了,看得見背景下的所有東西可以卻都操作無效。很有趣吧。。。
2.Dialog全透明
1.準(zhǔn)備保留邊框的全透明素材如下圖:
2.在values中新建一styles.xml文件,內(nèi)容如下:<?xml version="1.0" encoding="UTF-8"?>
@drawable/panel_background_sodino1
false
@style/TitleStyle
@style/TitleText
#000
3.在layout文件夾下新建一文件句為main_dialog.xml,內(nèi)容如下:<?xml version="1.0" encoding="UTF-8"?>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#0000">
android:layout_width="wrap_content"
android:layout_height="200px"
android:layout_below="@+id/ImageView01"
android:background="#0000">
android:text="SodinoText"
android:textColor="#f000"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#0000"
>
android:layout_below="@id/ScrollView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="Cancel">
4.Activity代碼如下:package lab.sodino.tanc;
import android.app.Activity;
import android.app.Dialog;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class TANCAct extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button btnShow = (Button) findViewById(R.id.btnShow);
btnShow.setOnClickListener(new Button.OnClickListener() {
public void onClick(View view) {
showTANC(
"This is my custom dialog box",
"TextContent/nWhen a dialog is requested for the first time, Android calls onCreateDialog(int) from your Activity, which is where you should instantiate the Dialog. This callback method is passed the same ID that you passed to showDialog(int). After you create the Dialog, return the object at the end of the method.",
"http://blog.csdn.net/sodino");
}
});
}
private void showTANC(String header, String content, String url) {
final Dialog dialog = new Dialog(this, R.style.TANCStyle);
dialog.setContentView(R.layout.main_dialog);
dialog.setTitle(header);
dialog.setCancelable(true);
TextView textView01 = (TextView) dialog.findViewById(R.id.TextView01);
textView01.setText(content + content + content);
Button btnCancel = (Button) dialog.findViewById(R.id.btnCancel);
btnCancel.setOnClickListener(new Button.OnClickListener() {
public void onClick(View view) {
dialog.cancel();
}
});
dialog.show();
}
}
最后效果圖:
新人創(chuàng)作打卡挑戰(zhàn)賽發(fā)博客就能抽獎!定制產(chǎn)品紅包拿不停!總結(jié)
以上是生活随笔為你收集整理的android activity透明主题,Android应用的全透明效果--Activity及Dialog的全透明的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 湘潭大学oracle考试,湘潭大学07级
- 下一篇: 简单的反U盘病毒(删除不了的畸形文件夹)