iprint_home_layout.xml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:background="@color/epson_lib_clean"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <include layout="@layout/navigationbar" />
  8. <include layout="@layout/home_top" />
  9. <FrameLayout
  10. android:id="@+id/fl_menulist"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent">
  13. <com.felipecsl.asymmetricgridview.library.widget.AsymmetricGridView
  14. android:id="@+id/menu_list"
  15. android:background="@color/all_white"
  16. android:scrollbars="none"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:layout_marginLeft="15dp"
  20. android:layout_marginTop="15dp"
  21. android:layout_marginRight="15dp"
  22. android:divider="@android:color/transparent"
  23. android:dividerHeight="3dp" />
  24. </FrameLayout>
  25. </LinearLayout>