You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

46 lines
1.7 KiB

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:orientation="horizontal"
android:gravity="center_vertical"
android:background="@color/colorPrimary"
android:padding="@dimen/margin_10">
<ImageView
android:id="@+id/ivBack"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:src="@drawable/svg_back"/>
<TextView
android:id="@+id/tvTitle"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textAllCaps="true"
android:layout_marginStart="@dimen/margin_20"
android:layout_marginTop="@dimen/margin_10"
android:textSize="@dimen/text_size_18"
android:layout_toEndOf="@+id/ivBack"
android:layout_centerVertical="true"
android:textColor="@color/white"/>
<TextView
android:id="@+id/tvHelpCall"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textAllCaps="true"
android:gravity="center"
android:visibility="gone"
android:layout_marginTop="@dimen/margin_2"
android:layout_marginEnd="@dimen/margin_10"
android:textSize="@dimen/text_size_15"
android:text="Help"
android:layout_alignParentEnd="true"
android:textColor="@color/white"
android:drawablePadding="@dimen/margin_10"
app:drawableStartCompat="@drawable/svg_phone" />
</RelativeLayout>

Powered by TurnKey Linux.