emotion_layout.xml 910 B

123456789101112131415161718192021222324252627282930
  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. <!--底部tab-->
  7. <View
  8. android:layout_width="match_parent"
  9. android:layout_height="1px"
  10. android:background="#999" />
  11. <!--内容显示区-->
  12. <android.support.v4.view.ViewPager
  13. android:id="@+id/vpEmotioin"
  14. android:layout_width="match_parent"
  15. android:layout_height="0dp"
  16. android:layout_weight="1" />
  17. <!--页数小圆点-->
  18. <LinearLayout
  19. android:id="@+id/llPageNumber"
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:layout_marginBottom="15dp"
  23. android:gravity="center"
  24. android:orientation="horizontal" />
  25. </LinearLayout>