Android slideActivity滑动退出(随滑动手势模糊变化)

来源:互联网 发布:淘宝后台操作教程 编辑:程序博客网 时间:2024/06/01 23:29

有很多的app进入其他界面的时候,退出时是手向右一滑就退出了,现在让我们来看看这种效果是怎么实现的。

首先activity要继承库中的BaseSlideActivity


 <activity            android:name="com.luo.ui.test.TransActivity"            android:label="@string/app_name"            android:theme="@style/TransParentActivity" > <!-- must use this theme -->        </activity>

 android:theme="@style/TransParentActivity" > <!-- must use this theme -->
这个主题必须给activity加上


然后styles如下

 <style name="TransParentActivity" parent="@android:style/Theme.NoTitleBar">        <item name="android:windowIsTranslucent">true</item>        <item name="android:windowBackground">@android:color/transparent</item>    </style>



图片延迟效果不好

下载地址

http://download.csdn.net/detail/luozisonghao/8428759



0 0
原创粉丝点击