| author | Da Risk <da_risk@geekorum.com> |
| Sat, 25 May 2019 15:45:42 -0700 | |
| changeset 192 | 8d3a8b9473ae |
| parent 137 | 5464f07a306c |
| child 288 | b3c817fbe3e3 |
| permissions | -rw-r--r-- |
| 0 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<!-- |
|
3 |
||
4 |
Geekttrss is a RSS feed reader application on the Android Platform. |
|
5 |
||
|
137
5464f07a306c
Update copyright headers for 2019
Da Risk <da_risk@geekorum.com>
parents:
134
diff
changeset
|
6 |
Copyright (C) 2017-2019 by Frederic-Charles Barthelery. |
| 0 | 7 |
|
8 |
This file is part of Geekttrss. |
|
9 |
||
10 |
Geekttrss is free software: you can redistribute it and/or modify |
|
11 |
it under the terms of the GNU General Public License as published by |
|
12 |
the Free Software Foundation, either version 3 of the License, or |
|
13 |
(at your option) any later version. |
|
14 |
||
15 |
Geekttrss is distributed in the hope that it will be useful, |
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18 |
GNU General Public License for more details. |
|
19 |
||
20 |
You should have received a copy of the GNU General Public License |
|
21 |
along with Geekttrss. If not, see <http://www.gnu.org/licenses/>. |
|
22 |
||
23 |
--> |
|
24 |
<layout xmlns:tools="http://schemas.android.com/tools" xmlns:android="http://schemas.android.com/apk/res/android" |
|
25 |
xmlns:app="http://schemas.android.com/apk/res-auto"> |
|
26 |
||
27 |
<androidx.constraintlayout.widget.ConstraintLayout |
|
28 |
android:layout_width="match_parent" |
|
29 |
android:layout_height="match_parent"> |
|
30 |
||
31 |
<com.google.android.material.appbar.AppBarLayout |
|
32 |
android:id="@+id/app_bar" |
|
33 |
android:layout_width="match_parent" |
|
34 |
android:layout_height="@dimen/app_bar_height" |
|
35 |
app:layout_constraintTop_toTopOf="parent" |
|
36 |
app:layout_constraintStart_toStartOf="parent" |
|
37 |
app:layout_constraintEnd_toEndOf="parent" |
|
38 |
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> |
|
39 |
||
40 |
<androidx.appcompat.widget.Toolbar |
|
41 |
android:id="@+id/toolbar" |
|
42 |
android:layout_width="match_parent" |
|
43 |
android:layout_height="wrap_content" |
|
44 |
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> |
|
45 |
||
46 |
</com.google.android.material.appbar.AppBarLayout> |
|
47 |
||
|
130
4ecc27333700
Use MaterialCardView everywhere
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
48 |
<com.google.android.material.card.MaterialCardView |
|
4ecc27333700
Use MaterialCardView everywhere
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
49 |
android:layout_width="560dp" |
|
4ecc27333700
Use MaterialCardView everywhere
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
50 |
android:layout_height="match_parent" |
|
4ecc27333700
Use MaterialCardView everywhere
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
51 |
app:layout_constraintStart_toStartOf="parent" |
|
4ecc27333700
Use MaterialCardView everywhere
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
52 |
app:layout_constraintEnd_toEndOf="parent" |
|
4ecc27333700
Use MaterialCardView everywhere
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
53 |
app:layout_constraintTop_toTopOf="parent" |
|
4ecc27333700
Use MaterialCardView everywhere
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
54 |
android:layout_marginTop="?actionBarSize" |
|
4ecc27333700
Use MaterialCardView everywhere
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
55 |
app:cardElevation="8dp"> |
| 0 | 56 |
|
|
192
8d3a8b9473ae
Settings: insert the settings fragment dynamically to be able to replace it later
Da Risk <da_risk@geekorum.com>
parents:
137
diff
changeset
|
57 |
<FrameLayout android:id="@+id/preferences_container" |
|
8d3a8b9473ae
Settings: insert the settings fragment dynamically to be able to replace it later
Da Risk <da_risk@geekorum.com>
parents:
137
diff
changeset
|
58 |
android:layout_width="match_parent" |
|
8d3a8b9473ae
Settings: insert the settings fragment dynamically to be able to replace it later
Da Risk <da_risk@geekorum.com>
parents:
137
diff
changeset
|
59 |
android:layout_height="match_parent" |
|
8d3a8b9473ae
Settings: insert the settings fragment dynamically to be able to replace it later
Da Risk <da_risk@geekorum.com>
parents:
137
diff
changeset
|
60 |
/> |
| 0 | 61 |
|
|
130
4ecc27333700
Use MaterialCardView everywhere
Da Risk <da_risk@geekorum.com>
parents:
0
diff
changeset
|
62 |
</com.google.android.material.card.MaterialCardView> |
| 0 | 63 |
|
64 |
</androidx.constraintlayout.widget.ConstraintLayout> |
|
65 |
</layout> |