mirror of
https://github.com/hmalik144/Alameera.git
synced 2025-12-10 03:05:33 +00:00
90 lines
3.6 KiB
XML
90 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v7.widget.ActionBarContainer
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/appbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?android:attr/actionBarSize"
|
|
android:background="#f9f9f9">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?android:attr/actionBarSize"
|
|
android:background="#f9f9f9"
|
|
android:orientation="horizontal">
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="@color/colorPrimary"
|
|
android:shadowColor="#a69393"
|
|
android:shadowDy="5"
|
|
android:shadowRadius="5"/>
|
|
|
|
<FrameLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:id="@+id/back_icon"
|
|
android:layout_width="?android:attr/actionBarSize"
|
|
android:layout_height="?android:attr/actionBarSize"
|
|
android:padding="6dp"
|
|
android:src="?android:attr/homeAsUpIndicator"
|
|
android:tint="#737373" />
|
|
|
|
<ImageView
|
|
android:id="@+id/action_bar_profile"
|
|
android:layout_width="?android:attr/actionBarSize"
|
|
android:layout_height="?android:attr/actionBarSize"
|
|
android:background="@android:color/transparent"
|
|
android:padding="15dp"
|
|
android:tint="#737373"
|
|
app:srcCompat="@drawable/user" />
|
|
</FrameLayout>
|
|
|
|
|
|
<ImageView
|
|
android:layout_width="?android:attr/actionBarSize"
|
|
android:layout_height="?android:attr/actionBarSize"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginBottom="-1dp"
|
|
android:padding="3dp"
|
|
app:srcCompat="@drawable/alogo2" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageButton
|
|
android:id="@+id/action_bar_basket"
|
|
android:layout_width="?android:attr/actionBarSize"
|
|
android:layout_height="?android:attr/actionBarSize"
|
|
android:layout_gravity="center_vertical"
|
|
android:background="@android:color/transparent"
|
|
android:paddingBottom="12dp"
|
|
android:paddingTop="10dp"
|
|
android:scaleType="fitCenter"
|
|
android:tint="#737373"
|
|
app:srcCompat="@drawable/basket" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/action_bar_social"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="?android:attr/actionBarSize"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginEnd="6dp"
|
|
android:layout_marginRight="6dp"
|
|
android:background="@android:color/transparent"
|
|
android:tint="#737373"
|
|
app:srcCompat="@drawable/instagram" />
|
|
</LinearLayout>
|
|
</RelativeLayout>
|
|
|
|
</android.support.v7.widget.ActionBarContainer> |