widget_steps_view.xml 758 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <FrameLayout
  7. android:id="@+id/labels_container"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_marginTop="20dp" />
  11. <com.xzjmyk.pm.activity.view.steps.StepsViewIndicator
  12. android:id="@+id/steps_indicator_view"
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:layout_marginLeft="10dp"
  16. android:layout_marginRight="10dp"
  17. android:layout_marginTop="5dp" />
  18. </LinearLayout>