]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/views/CheckedLinearLayout.java
Display the folder icons in the spinners in the bookmarks database view activity...
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / views / CheckedLinearLayout.java
1 /*
2  * Copyright © 2019 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
5  *
6  * Privacy Browser is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Browser is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  *
20  *
21  * This file is a modified version of <https://android.googlesource.com/platform/packages/apps/Camera/+/master/src/com/android/camera/ui/CheckedLinearLayout.java>.
22  *
23  * The original licensing information is below.
24  *
25  * Copyright (C) 2012 The Android Open Source Project
26  *
27  * Licensed under the Apache License, Version 2.0 (the "License");
28  * you may not use this file except in compliance with the License.
29  * You may obtain a copy of the License at
30  *
31  *      http://www.apache.org/licenses/LICENSE-2.0
32  *
33  * Unless required by applicable law or agreed to in writing, software
34  * distributed under the License is distributed on an "AS IS" BASIS,
35  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
36  * See the License for the specific language governing permissions and
37  * limitations under the License.
38  */
39
40 package com.stoutner.privacybrowser.views;
41
42 import android.content.Context;
43 import android.support.annotation.Nullable;
44 import android.util.AttributeSet;
45 import android.view.View;
46 import android.widget.Checkable;
47 import android.widget.LinearLayout;
48
49 public class CheckedLinearLayout extends LinearLayout implements Checkable {
50     private boolean isCurrentlyChecked;
51     private static final int[] CHECKED_STATE_SET = {
52             android.R.attr.state_checked
53     };
54
55     public CheckedLinearLayout(Context context) {
56         // Run the default commands.
57         super(context);
58     }
59
60     public CheckedLinearLayout(Context context, @Nullable AttributeSet attributeSet) {
61         // Run the default commands.
62         super(context, attributeSet);
63     }
64
65     public CheckedLinearLayout(Context context, @Nullable AttributeSet attributeSet, int defaultStyleAttribute) {
66         // Run the default commands.
67         super(context, attributeSet, defaultStyleAttribute);
68     }
69
70     /*  This constructor can only be added once the minimum API >= 21.
71     public CheckedLinearLayout(Context context, @Nullable AttributeSet attributeSet, int defaultStyleAttribute, int defaultStyleResource) {
72         // Run the default commands.
73         super(context, attributeSet, defaultStyleAttribute, defaultStyleResource);
74     } */
75
76     @Override
77     public boolean isChecked() {
78         // Return the checked status.
79         return isCurrentlyChecked;
80     }
81
82     @Override
83     public void setChecked(boolean checked) {
84         // Only process the command if a change is requested.
85         if (isCurrentlyChecked != checked) {
86             // Update the is currently checked tracker.
87             isCurrentlyChecked = checked;
88
89             // Refresh the drawable state.
90             refreshDrawableState();
91
92             // Propagate the checked status to the child views.
93             for (int i = 0; i < getChildCount(); i++) {
94                 // Get a handle for the child view.
95                 View childView = getChildAt(i);
96
97                 // Propagate the checked status if the child view is checkable.
98                 if (childView instanceof Checkable) {
99                     // Cast the child view to `Checkable`.
100                     Checkable checkableChildView = (Checkable) childView;
101
102                     // Set the checked status.
103                     checkableChildView.setChecked(checked);
104                 }
105             }
106         }
107     }
108
109     @Override
110     public void toggle() {
111         // Toggle the state.
112         setChecked(!isCurrentlyChecked);
113     }
114
115     @Override
116     public int[] onCreateDrawableState(int extraSpace) {
117         final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
118
119         if (isCurrentlyChecked) {
120             mergeDrawableStates(drawableState, CHECKED_STATE_SET);
121         }
122
123         return drawableState;
124     }
125 }