home_settings.xml 734 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:orientation="vertical"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <EditText
  8. android:id="@+id/filter_box"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_marginHorizontal="@dimen/developer_options_filter_margins"
  12. android:hint="@string/developer_options_filter_hint"
  13. android:visibility="gone"
  14. />
  15. <FrameLayout
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. android:id="@android:id/list_container"/>
  19. </LinearLayout>