I am new to Android and creating a custom toolbar I have set a textview and some images in my toolbar but it is not visible.`Below is the code
I have used this link for tutorial http://www.androidhive.info/2015/09/android-material-design-working-with-tabs/
<android.support.design.widget.CoordinatorLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="130dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="85dp"
android:background="?attr/colorPrimary">
<!--app:layout_scrollFlags="scroll|enterAlways"-->
<!--app:popupTheme="@style/ThemeOverlay.AppCompat.Light">-->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/ToolBarTitle"
android:layout_gravity="bottom"
android:layout_marginBottom="35dp"
android:id="@+id/toolbar_title"
android:textColor="#FFFFFF"
android:textSize="17.3sp"
android:layout_marginLeft="127dp"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="6dp"
android:layout_gravity="bottom"
android:layout_marginBottom="50dp"
android:background="@drawable/icn_dropdown" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_marginBottom="45dp"
android:layout_marginLeft="110dp"
android:background="@drawable/icn_options"/>
</android.support.v7.widget.Toolbar>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#f5f5f5"
app:theme="@style/TabTheme"
app:tabIndicatorColor="@color/colorPrimary"
app:tabTextColor="@color/tab_text"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>