AppCompat对话主题的边距和背景与圆形显示

时间:2015-10-13 11:39:08

标签: android android-layout android-5.0-lollipop material-design

我遇到了一些困难.. 我想模仿Google I / O 2015应用程序中看到的浮动搜索小部件 - 见下文。

enter image description here

到目前为止,我设法将我的第二个(搜索)活动放入Theme.AppCompat.Light.Dialog主题的对话框中。我按照这里显示的步骤https://stackoverflow.com/a/32199671/2674529进行循环显示效果工作。

第二个活动样式在Theme.Transparent

中定义
<style name="Theme.Transparent" parent="Theme.AppCompat.Light.Dialog">
    <item name="android:windowIsTranslucent">false</item>
    <item name="android:statusBarColor">@android:color/transparent</item>
    <item name="android:windowBackground">@android:color/transparent</item>

    <item name="windowNoTitle">true</item>
</style>

注意:绿色是带有alpha的绿色,是第二个活动的根布局的背景。

问题是对话框背景的透明度。 如果我注释掉

<item name="android:windowBackground">@android:color/transparent</item>

从主题开始,然后对话框的背景发白 - 如下所示。 enter image description here

如果我取消注释该行,我会得到一个&#34;对话框&#34;没有任何边界也没有边缘 - 见过下面。 enter image description here

有没有人有任何想法?感谢

PS。对话框/活动的xml

<?xml version="1.0" encoding="utf-8"?>

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:id="@+id/root_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#8800FF00">

    </FrameLayout>

</android.support.v4.widget.DrawerLayout>

0 个答案:

没有答案