lightning-i2p/res/drawable/progress.xml
Anthony Restaino 9df6117475 2.5.0.11
- Swipe gestures to go back and forth
- Reverted to old icon :(
- ability to hide the status bar
- progress bar indicating page load progress
- clear cookies button
- added proguard file
- bugfixes/random stuff I changed
2013-08-13 20:32:59 -04:00

18 lines
558 B
XML

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background"
android:drawable="@drawable/progress_bar_bg" />
<item android:id="@android:id/secondaryProgress">
<scale android:scaleWidth="100%"
android:drawable="@drawable/progress_bar" />
</item>
<item android:id="@android:id/progress">
<scale android:scaleWidth="100%"
android:drawable="@drawable/progress_bar" />
</item>
</layer-list>