Dialog相关

去掉title

方法1:

Dialog d = new Dialog(context);
d.requestWindowFeature(Window.FEATURE_NO_TITLE);

方法2:

定义style

<style name="TANCStyle" parent="@android:style/Theme.Dialog">
    <!-- 更换背景图片实现全透明 -->
    <item name="android:windowBackground">@drawable/bluetooth_background</item>
    <item name="android:windowNoTitle">true</item>    // 这里去掉title
</style>

在layout中添加

<ProgressBar
            android:id="@+id/progressBar1"
            style="@style/porgressBar.bluetooth_scanning"    // 这里是应用style的代码
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/textView1"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="6dp" />

 

posted @ 2013-04-15 18:30  染煞之心  阅读(126)  评论(0编辑  收藏  举报