mirror of
https://github.com/pierre42100/ComunicAndroid
synced 2025-07-01 06:13:30 +00:00
Can delete the entire list of notifications.
This commit is contained in:
@ -3,4 +3,26 @@
|
||||
android:orientation="vertical" android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<!-- Notification loading progress -->
|
||||
<ProgressBar
|
||||
android:id="@+id/loading_progress"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginTop="10dp"/>
|
||||
|
||||
<!-- Notifications list -->
|
||||
<ListView
|
||||
android:id="@+id/notificcation_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"/>
|
||||
|
||||
<!-- Delete all the notifications button -->
|
||||
<Button
|
||||
android:id="@+id/delete_all_notif_btn"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/action_delete_all_notifications"/>
|
||||
|
||||
</LinearLayout>
|
Reference in New Issue
Block a user