home_settings.xml 836 B

123456789101112131415161718192021222324
  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. android:inputType="text"
  15. android:maxLines="1"
  16. android:imeOptions="actionDone"
  17. />
  18. <FrameLayout
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"
  21. android:id="@android:id/list_container"/>
  22. </LinearLayout>