Home | History | Annotate | Download | only in settings
      1 /*
      2  * Copyright (C) 2009 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 
     17 package com.android.settings;
     18 
     19 import android.content.ContentUris;
     20 import android.content.Context;
     21 import android.content.Intent;
     22 import android.net.Uri;
     23 import android.preference.Preference;
     24 import android.provider.Telephony;
     25 import android.util.AttributeSet;
     26 import android.util.Log;
     27 import android.view.View;
     28 import android.view.ViewGroup;
     29 import android.view.View.OnClickListener;
     30 import android.widget.CompoundButton;
     31 import android.widget.RadioButton;
     32 import android.widget.RelativeLayout;
     33 
     34 public class ApnPreference extends Preference implements
     35         CompoundButton.OnCheckedChangeListener, OnClickListener {
     36     final static String TAG = "ApnPreference";
     37 
     38     public ApnPreference(Context context, AttributeSet attrs, int defStyle) {
     39         super(context, attrs, defStyle);
     40     }
     41 
     42     public ApnPreference(Context context, AttributeSet attrs) {
     43         this(context, attrs, R.attr.apnPreferenceStyle);
     44     }
     45 
     46     public ApnPreference(Context context) {
     47         this(context, null);
     48     }
     49 
     50     private static String mSelectedKey = null;
     51     private static CompoundButton mCurrentChecked = null;
     52     private boolean mProtectFromCheckedChange = false;
     53     private boolean mSelectable = true;
     54 
     55     @Override
     56     public View getView(View convertView, ViewGroup parent) {
     57         View view = super.getView(convertView, parent);
     58 
     59         View widget = view.findViewById(R.id.apn_radiobutton);
     60         if ((widget != null) && widget instanceof RadioButton) {
     61             RadioButton rb = (RadioButton) widget;
     62             if (mSelectable) {
     63                 rb.setOnCheckedChangeListener(this);
     64 
     65                 boolean isChecked = getKey().equals(mSelectedKey);
     66                 if (isChecked) {
     67                     mCurrentChecked = rb;
     68                     mSelectedKey = getKey();
     69                 }
     70 
     71                 mProtectFromCheckedChange = true;
     72                 rb.setChecked(isChecked);
     73                 mProtectFromCheckedChange = false;
     74                 rb.setVisibility(View.VISIBLE);
     75             } else {
     76                 rb.setVisibility(View.GONE);
     77             }
     78         }
     79 
     80         View textLayout = view.findViewById(R.id.text_layout);
     81         if ((textLayout != null) && textLayout instanceof RelativeLayout) {
     82             textLayout.setOnClickListener(this);
     83         }
     84 
     85         return view;
     86     }
     87 
     88     public boolean isChecked() {
     89         return getKey().equals(mSelectedKey);
     90     }
     91 
     92     public void setChecked() {
     93         mSelectedKey = getKey();
     94     }
     95 
     96     public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
     97         Log.i(TAG, "ID: " + getKey() + " :" + isChecked);
     98         if (mProtectFromCheckedChange) {
     99             return;
    100         }
    101 
    102         if (isChecked) {
    103             if (mCurrentChecked != null) {
    104                 mCurrentChecked.setChecked(false);
    105             }
    106             mCurrentChecked = buttonView;
    107             mSelectedKey = getKey();
    108             callChangeListener(mSelectedKey);
    109         } else {
    110             mCurrentChecked = null;
    111             mSelectedKey = null;
    112         }
    113     }
    114 
    115     public void onClick(android.view.View v) {
    116         if ((v != null) && (R.id.text_layout == v.getId())) {
    117             Context context = getContext();
    118             if (context != null) {
    119                 int pos = Integer.parseInt(getKey());
    120                 Uri url = ContentUris.withAppendedId(Telephony.Carriers.CONTENT_URI, pos);
    121                 context.startActivity(new Intent(Intent.ACTION_EDIT, url));
    122             }
    123         }
    124     }
    125 
    126     public void setSelectable(boolean selectable) {
    127         mSelectable = selectable;
    128     }
    129 
    130     public boolean getSelectable() {
    131         return mSelectable;
    132     }
    133 }
    134