|
0
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<!--
|
|
|
3 |
|
|
|
4 |
Geekttrss is a RSS feed reader application on the Android Platform.
|
|
|
5 |
|
|
1174
|
6 |
Copyright (C) 2017-2024 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 |
<animated-selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
25 |
|
|
|
26 |
<item android:id="@+id/starred"
|
|
|
27 |
android:state_checked="true"
|
|
|
28 |
android:drawable="@drawable/ic_star_fill_24dp" />
|
|
|
29 |
|
|
|
30 |
<item android:id="@+id/non_starred"
|
|
|
31 |
android:drawable="@drawable/ic_star_empty_24dp"/>
|
|
|
32 |
|
|
|
33 |
<transition android:fromId="@id/non_starred"
|
|
|
34 |
android:toId="@id/starred"
|
|
|
35 |
android:drawable="@drawable/avd_ic_star_filled"/>
|
|
|
36 |
|
|
|
37 |
<transition android:fromId="@id/starred"
|
|
|
38 |
android:toId="@id/non_starred"
|
|
|
39 |
android:drawable="@drawable/avd_ic_star_empty"/>
|
|
|
40 |
|
|
|
41 |
</animated-selector>
|