activity_faq.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:id="@+id/main_content"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent"
  9. android:background="@color/CFFFFFF"
  10. android:orientation="vertical"
  11. tools:context="kr.co.zumo.app.lifeplus.activity.TutorialActivity">
  12. <android.support.design.widget.TabLayout
  13. android:id="@+id/faq_tab_layout"
  14. android:layout_width="match_parent"
  15. android:layout_height="55dp"
  16. android:layout_marginLeft="25dp"
  17. android:layout_marginRight="25dp"
  18. app:tabGravity="center"/>
  19. <RelativeLayout
  20. android:layout_width="match_parent"
  21. android:layout_height="match_parent">
  22. <android.support.v4.view.ViewPager
  23. android:id="@+id/faq_view_pager"
  24. android:layout_width="match_parent"
  25. android:layout_height="match_parent"/>
  26. <!--<android.support.design.widget.FloatingActionButton-->
  27. <!--android:id="@+id/button_write_faq"-->
  28. <!--android:layout_width="44dp"-->
  29. <!--android:layout_height="44dp"-->
  30. <!--android:layout_alignParentBottom="true"-->
  31. <!--android:layout_alignParentEnd="true"-->
  32. <!--android:layout_gravity="bottom|end"-->
  33. <!--android:layout_marginBottom="22dp"-->
  34. <!--android:layout_marginEnd="22dp"-->
  35. <!--android:src="@drawable/icon_inqurebtn"-->
  36. <!--android:scaleType="center"-->
  37. <!--/>-->
  38. </RelativeLayout>
  39. </LinearLayout>