fragment_general_parameter.xml 787 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@color/shallowblue"
  7. android:padding="@dimen/dp_5">
  8. <android.support.v7.widget.RecyclerView
  9. android:id="@+id/rv_currency"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:layout_marginRight="@dimen/dp_30"
  13. android:descendantFocusability="beforeDescendants"
  14. android:fastScrollEnabled="false"
  15. tools:ignore="MissingConstraints">
  16. </android.support.v7.widget.RecyclerView>
  17. </LinearLayout>