您的位置:首页 > 移动开发 > Android开发

Android半透明对话框实现

2011-01-05 21:01 375 查看
1、定义style:

<resources>

    <style
        name="dialog_fullscreen">
        <item
            name="android:windowFullscreen">true</item>
        <item
            name="android:windowNoTitle">true</item>
        <item
            name="android:windowBackground">@android:color/transparent</item>
    </style>
</resources>

 

2、定义layout文件:test_dialog.xml

<LinearLayout
    android:id="@+id/ll_dialog"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="center"
    android:background="#000000">

……

</LinearLayout>

 

3、代码中设置:

public class TestDialog extends Dialog

{

    public TestDialog(Context context)
    {
        super(context, R.style.dialog_fullscreen);
        // TODO Auto-generated constructor stub
    }

 

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.test_dialog);

 

        // 设置背景透明度
        View ll = findViewById(R.id.ll_dialog);
        ll.getBackground().setAlpha(120);// 120为透明的比率
    }

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息