165a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane/*
265a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane * Copyright (C) 2014 The Android Open Source Project
365a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane *
465a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane * Licensed under the Apache License, Version 2.0 (the "License");
565a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane * you may not use this file except in compliance with the License.
665a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane * You may obtain a copy of the License at
765a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane *
865a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane *      http://www.apache.org/licenses/LICENSE-2.0
965a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane *
1065a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane * Unless required by applicable law or agreed to in writing, software
1165a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane * distributed under the License is distributed on an "AS IS" BASIS,
1265a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1365a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane * See the License for the specific language governing permissions and
1465a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane * limitations under the License.
1565a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane */
1665a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane
1765a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lanepackage com.android.tv.settings.device.apps;
1865a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane
1965a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Laneimport com.android.tv.settings.R;
2065a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane
2165a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Laneimport android.app.Fragment;
2265a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Laneimport android.os.Bundle;
2365a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Laneimport android.view.LayoutInflater;
2465a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Laneimport android.view.View;
2565a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Laneimport android.view.ViewGroup;
2665a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Laneimport android.widget.AppSecurityPermissions;
2765a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane
2865a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane/**
2965a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane * Fragment that shows the app permissions.
3065a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane */
3165a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lanepublic class PermissionsFragment extends Fragment {
3265a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane
3365a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane    private static final String PACKAGE_NAME_KEY = "packageName";
3465a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane
3565a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane    static PermissionsFragment newInstance(String packageName) {
3665a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane
3765a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane        PermissionsFragment f = new PermissionsFragment();
3865a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane        Bundle args = new Bundle();
3965a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane        args.putString(PACKAGE_NAME_KEY, packageName);
4065a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane        f.setArguments(args);
4165a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane        return f;
4265a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane    }
4365a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane
4465a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane    @Override
4565a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane    public View onCreateView(
4665a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane            LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
4765a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane
4865a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane        View content = inflater.inflate(R.layout.device_apps_app_management_permissions, null);
4965a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane
5065a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane        AppSecurityPermissions asp = new AppSecurityPermissions(getActivity(), getPackageName());
5165a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane        if (asp.getPermissionCount() > 0 && content instanceof ViewGroup) {
5265a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane            ViewGroup vg = (ViewGroup) content;
5365a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane            vg.removeAllViews();
5465a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane            vg.addView(asp.getPermissionsView());
5565a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane        }
5665a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane
5765a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane        return content;
5865a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane    }
5965a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane
6065a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane    private String getPackageName() {
6165a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane        return getArguments().getString(PACKAGE_NAME_KEY);
6265a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane    }
6365a5a7d84ad9b5324ae53eda526e39e513473af7Christopher Lane}
64