OSDN Git Service

Add MIPS support
[android-x86/external-koush-Superuser.git] / Superuser / src / com / koushikdutta / superuser / PolicyNativeFragment.java
1 /*
2  * Copyright (C) 2013 Koushik Dutta (@koush)
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.koushikdutta.superuser;
18
19 import android.annotation.SuppressLint;
20 import android.content.Context;
21 import android.os.Bundle;
22 import android.view.ContextThemeWrapper;
23 import android.view.LayoutInflater;
24 import android.view.View;
25 import android.view.ViewGroup;
26
27 import com.koushikdutta.widgets.FragmentInterfaceWrapper;
28 import com.koushikdutta.widgets.NativeFragment;
29
30 @SuppressLint("NewApi")
31 public class PolicyNativeFragment extends NativeFragment<PolicyFragmentInternal> {
32     ContextThemeWrapper mWrapper;
33     @Override
34     public Context getContext() {
35         if (mWrapper != null)
36             return mWrapper;
37         mWrapper = new ContextThemeWrapper(super.getContext(), R.style.SuperuserDark_LargeIcon);
38         return mWrapper;
39     }
40
41     protected class FragmentInternal extends PolicyFragmentInternal {
42         public FragmentInternal(FragmentInterfaceWrapper fragment) {
43             super(fragment);
44         }
45
46         @Override
47         public Context getContext() {
48             return PolicyNativeFragment.this.getContext();
49         }
50         
51         @Override
52         protected int getListFragmentResource() {
53             return R.layout.policy_list_content;
54         }
55         
56         @Override
57         protected LogNativeFragment createLogNativeFragment() {
58             // factory hook.
59             return super.createLogNativeFragment();
60         }
61         
62         @Override
63         protected SettingsNativeFragment createSettingsNativeFragment() {
64             // factory hook.
65             return super.createSettingsNativeFragment();
66         }
67     };
68     
69     @Override
70     public PolicyFragmentInternal createFragmentInterface() {
71         // factory hook.
72         return new FragmentInternal(this);
73     }
74     
75     @Override
76     public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
77         return super.onCreateView((LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE), container, savedInstanceState);
78     }
79 }