1f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy/*
2f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy * Copyright (C) 2009 The Android Open Source Project
3f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy *
4f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy * Licensed under the Apache License, Version 2.0 (the "License");
5f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy * you may not use this file except in compliance with the License.
6f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy * You may obtain a copy of the License at
7f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy *
8f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy *      http://www.apache.org/licenses/LICENSE-2.0
9f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy *
10f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy * Unless required by applicable law or agreed to in writing, software
11f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy * distributed under the License is distributed on an "AS IS" BASIS,
12f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy * See the License for the specific language governing permissions and
14f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy * limitations under the License.
15f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy */
16f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy
17f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy
181d3165f10b12165f02b7015ac1a817c5f60e6399Neal Nguyenpackage android.widget;
19f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy
201d3165f10b12165f02b7015ac1a817c5f60e6399Neal Nguyenimport com.android.frameworks.coretests.R;
21f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy
22f32b488bd205ae2b026f47ee898073fd4815da90Romain Guyimport android.app.Activity;
23f32b488bd205ae2b026f47ee898073fd4815da90Romain Guyimport android.os.Bundle;
24f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy
25f32b488bd205ae2b026f47ee898073fd4815da90Romain Guypublic class RadioGroupActivity extends Activity {
26f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy    @Override
27f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy    protected void onCreate(Bundle savedInstanceState) {
28f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy        super.onCreate(savedInstanceState);
29f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy        setContentView(R.layout.radiogroup_checkedchild);
30f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy    }
31f32b488bd205ae2b026f47ee898073fd4815da90Romain Guy}
32