berict/Tapad

View on GitHub
app/src/main/res/layout/fragment_actionbar.xml

Summary

Maintainability
Test Coverage
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/actionbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="-4dp">
    
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        
        <RelativeLayout
            android:id="@+id/actionbar_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/white">
            
            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_vertical">
                
                <android.support.v7.widget.Toolbar
                    android:id="@+id/actionbar_toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@color/colorPrimary"
                    app:popupTheme="@style/ActionBarPopup"
                    app:theme="@style/ActionBar"
                    app:title="Title"/>
                
                <ImageView
                    android:id="@+id/actionbar_image"
                    android:layout_width="?attr/actionBarSize"
                    android:layout_height="?attr/actionBarSize"
                    android:layout_alignBottom="@id/actionbar_toolbar"
                    android:layout_centerHorizontal="true"
                    android:padding="8dp"
                    android:visibility="gone"/>
            </RelativeLayout>
        </RelativeLayout>
        
        <View
            android:layout_width="match_parent"
            android:layout_height="4dp"/>
    </LinearLayout>
</RelativeLayout>