lightning-i2p/res/layout/toolbar.xml

26 lines
990 B
XML
Raw Normal View History

2015-01-26 18:09:27 +00:00
<?xml version="1.0" encoding="utf-8"?>
2015-01-29 02:17:25 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2015-01-26 18:09:27 +00:00
xmlns:custom="http://schemas.android.com/apk/res-auto"
2015-01-29 02:17:25 +00:00
android:id="@+id/toolbar_layout"
2015-01-26 18:09:27 +00:00
android:layout_width="match_parent"
2015-01-29 02:17:25 +00:00
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:elevation="2dp"
android:orientation="vertical" >
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
custom:contentInsetEnd="0dp"
custom:contentInsetStart="0dp" />
<acr.browser.lightning.AnimatedProgressBar
android:id="@+id/progress_view"
android:layout_width="match_parent"
android:layout_height="2dp"
custom:backgroundColor="?attr/progressBackgroundColor"
2015-01-29 18:25:19 +00:00
custom:bidirectionalAnimate="false"
2015-01-29 02:17:25 +00:00
custom:progressColor="?attr/colorAccent" />
</LinearLayout>