aboutsummaryrefslogtreecommitdiffstats
path: root/java/res/layout
diff options
context:
space:
mode:
Diffstat (limited to 'java/res/layout')
-rw-r--r--java/res/layout/sdk8_notifications_view.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/java/res/layout/sdk8_notifications_view.xml b/java/res/layout/sdk8_notifications_view.xml
new file mode 100644
index 00000000000..2daa5beea86
--- /dev/null
+++ b/java/res/layout/sdk8_notifications_view.xml
@@ -0,0 +1,31 @@
1<!-- Notification content widget tree for GNU Emacs on Android 2.3.
2
3Copyright (C) 2023 Free Software Foundation, Inc.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. -->
19
20<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21 android:orientation="vertical"
22 android:layout_width="match_parent"
23 android:layout_height="wrap_content"
24 android:padding="8dp">
25 <TextView android:id="@+id/sdk8_notifications_title"
26 android:layout_width="wrap_content"
27 android:layout_height="wrap_content"/>
28 <TextView android:id="@+id/sdk8_notifications_content"
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content"/>
31</LinearLayout>