Created
February 21, 2017 04:07
-
-
Save Lzyct/1f095df4f437d08fcbaa0de0ef51f717 to your computer and use it in GitHub Desktop.
BreadCrumb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools" | |
| android:id="@+id/layout_order_progress_status" | |
| android:layout_width="wrap_content" | |
| android:layout_height="fill_parent" | |
| android:layout_weight="1.0" | |
| tools:ignore="all"> | |
| <TextView | |
| android:id="@+id/tv_title" | |
| style="@style/SmallText.Bold" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:layout_centerInParent="true" | |
| android:gravity="center" | |
| android:paddingRight="5.0dip" | |
| android:text="sample" | |
| android:textColor="@color/gray_c0" /> | |
| <ImageView | |
| android:id="@+id/iv_arrow" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:layout_alignParentRight="true" | |
| android:layout_centerVertical="true" | |
| android:src="@drawable/arrow_right" /> | |
| </RelativeLayout> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <LinearLayout 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="match_parent" | |
| xmlns:tools="http://schemas.android.com/tools" | |
| android:orientation="vertical"> | |
| <LinearLayout | |
| android:id="@+id/layout_flight_order_progress" | |
| android:layout_width="match_parent" | |
| android:layout_height="31.0dip" | |
| android:layout_marginBottom="5dp" | |
| android:background="@color/white" | |
| android:orientation="horizontal"> | |
| <include | |
| android:id="@+id/step1" | |
| layout="@layout/layer_step" /> | |
| <include | |
| android:id="@+id/step2" | |
| layout="@layout/layer_step" /> | |
| <include | |
| android:id="@+id/step3" | |
| layout="@layout/layer_step" /> | |
| <include | |
| android:id="@+id/step4" | |
| layout="@layout/layer_step" /> | |
| </LinearLayout> | |
| </LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment