view_three.xml 975 B

12345678910111213141516171819202122232425262728
  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:background="@drawable/help3"
  6. android:gravity="center"
  7. android:orientation="vertical">
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:layout_gravity="bottom"
  12. android:gravity="bottom"
  13. android:orientation="vertical">
  14. <Button
  15. android:id="@+id/btn_enter_index"
  16. android:layout_width="100dp"
  17. android:layout_height="35dp"
  18. android:layout_gravity="bottom|center"
  19. android:background="@drawable/btn_help"
  20. android:text="进入体验"
  21. android:onClick="enterClick"
  22. android:layout_marginBottom="35dp"
  23. android:textColor="#768E00" />
  24. </LinearLayout>
  25. </LinearLayout>