1/*
2 * Copyright (C) 2011 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.gallery3d.gadget;
18
19import com.android.gallery3d.R;
20
21import android.app.Activity;
22import android.content.Intent;
23import android.os.Bundle;
24import android.view.View;
25import android.view.View.OnClickListener;
26import android.widget.Button;
27import android.widget.RadioGroup;
28import android.widget.RadioGroup.OnCheckedChangeListener;
29
30public class WidgetTypeChooser extends Activity {
31
32    private OnCheckedChangeListener mListener = new OnCheckedChangeListener() {
33        @Override
34        public void onCheckedChanged(RadioGroup group, int checkedId) {
35            Intent data = new Intent()
36                    .putExtra(WidgetConfigure.KEY_WIDGET_TYPE, checkedId);
37            setResult(RESULT_OK, data);
38            finish();
39        }
40    };
41
42    @Override
43    public void onCreate(Bundle savedInstanceState) {
44        super.onCreate(savedInstanceState);
45        setTitle(R.string.widget_type);
46        setContentView(R.layout.choose_widget_type);
47        RadioGroup rg = (RadioGroup) findViewById(R.id.widget_type);
48        rg.setOnCheckedChangeListener(mListener);
49
50        Button cancel = (Button) findViewById(R.id.cancel);
51        cancel.setOnClickListener(new OnClickListener() {
52            @Override
53            public void onClick(View v) {
54                setResult(RESULT_CANCELED);
55                finish();
56            }
57        });
58    }
59}
60