blob: 21c07f02a16c238f86fdec3ff714a4239b8a8fd2 [file] [log] [blame]
Jian Jina7f06f82018-08-06 16:34:03 -07001/*
2 * Copyright (C) 2018 The Android Open Source Project
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
17package com.android.car.settings.system;
18
Heemin Seog00e6aba2018-10-26 10:05:11 -070019import androidx.annotation.XmlRes;
Jian Jina7f06f82018-08-06 16:34:03 -070020
21import com.android.car.settings.R;
Heemin Seog00e6aba2018-10-26 10:05:11 -070022import com.android.car.settings.common.BasePreferenceFragment;
Jian Jina7f06f82018-08-06 16:34:03 -070023
24/**
25 * Fragment showing legal information.
26 */
Heemin Seog00e6aba2018-10-26 10:05:11 -070027public class LegalInformationFragment extends BasePreferenceFragment {
Jian Jina7f06f82018-08-06 16:34:03 -070028
davidlncb0bfa22018-08-27 14:13:05 -070029 @Override
Heemin Seog00e6aba2018-10-26 10:05:11 -070030 @XmlRes
31 protected int getPreferenceScreenResId() {
32 return R.xml.legal_information_fragment;
Jian Jina7f06f82018-08-06 16:34:03 -070033 }
34}