ListView Video

com.baidu.frontia.FrontiaApplication

ListView Video

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

http://www.eoeandroid.com/thread-577718-1-1.html

http://www.apkbus.com/android-232711-1-1.html

http://www.2cto.com/kf/201310/252413.html

http://blog.csdn.net/dyllove98/article/details/8841602

http://www.eoeandroid.com/thread-540063-1-4.html

http://dwz.cn/wVmA0

https://github.com/search?l=Java&p=4&q=ios+android&ref=searchresults&type=Repositories&utf8=%E2%9C%93
https://github.com/julianxiao/android/tree/master/AidQRApp
https://github.com/CyberAgent/android-gpuimage
https://github.com/baoyongzhang/ActionSheetForAndroid
https://github.com/ened/Android-Tiling-ScrollView
https://github.com/drakeet/AndroidUIView
https://github.com/daCapricorn/ArcMenu
https://github.com/chinloong/Android-PinView
https://github.com/Maxwin-z/XButton-android
https://github.com/thehung111/ContactListView
https://github.com/7heaven/SHSwitchView
https://github.com/Espier/iAndroid_ios7_ui
https://github.com/MarkMjw/TreeView
https://github.com/vladexologija/GroupedTextView
https://github.com/SkillCollege/iOSActionSheet
https://github.com/DayS/uitableview4android
https://github.com/thiagolocatelli/android-uitableview
https://github.com/dmacosta/ATableView
https://github.com/shelwee/uilistview
https://github.com/zhangping19880920/SwitchButton
http://www.apkbus.com/forum.php?mod=viewthread&tid=116612&extra=&page=1
https://github.com/chenee/slidingUpPanel

https://github.com/tibi1712/FoldingNavigationDrawer-Android

https://github.com/nadavfima/GlowPadView

<style name="CustomDialog" parent="android:style/Theme.Dialog">
<!--背景颜色及透明程度-->
<item name="android:windowBackground">@android:color/transparent</item>
<!--是否有标题 -->
<item name="android:windowNoTitle">true</item>
<!--是否浮现在activity之上-->
<item name="android:windowIsFloating">true</item>
<!--是否模糊-->
<item name="android:backgroundDimEnabled">false</item>
</style>

其中@android:color/transparent就是#00000000, 前两个0表示透明度,后面6个0表示颜色。另外还可以加上
<item name="android:windowFrame">@null</item>

原文地址:https://www.cnblogs.com/eustoma/p/4451367.html