notifications_filter.xml 773 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="200dp"
  4. android:layout_height="wrap_content"
  5. android:background="?android:attr/windowBackground">
  6. <ListView
  7. android:id="@+id/listView"
  8. android:layout_width="match_parent"
  9. android:layout_height="0dp"
  10. android:layout_weight="1" />
  11. <Button
  12. android:id="@+id/buttonApply"
  13. style="@style/TuskyButton.TextButton"
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:layout_weight="0"
  17. android:text="@string/filter_apply"
  18. android:textSize="?attr/status_text_medium" />
  19. </LinearLayout>