Skip to content

Instantly share code, notes, and snippets.

@DiegoGSantos
Created April 5, 2018 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DiegoGSantos/91ce127a608f191aa2d90730f80c3492 to your computer and use it in GitHub Desktop.
Save DiegoGSantos/91ce127a608f191aa2d90730f80c3492 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal">
<View
android:layout_width="0dp"
android:layout_height="6dp"
android:background="@color/black"
android:layout_weight="1" />
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<View
android:id="@+id/circle"
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_gravity="center"
android:background="@drawable/circle" />
<View
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_gravity="center"
android:background="@drawable/bus" />
</FrameLayout>
<View
android:layout_width="0dp"
android:layout_height="6dp"
android:layout_weight="1"
android:background="@color/black" />
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="30sp"
android:gravity="center"
android:text="@string/company_name"/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment