共享偏好错误中的MODE

共享偏好错误中的MODE

我用这段代码作为广播接收器,但上面说
无法将模式专用解析为变量广播接收器

public class anyNewService extends BroadcastReceiver {
String uid,text;
int c=1;


@Override
public void onReceive(Context context, Intent intent) {
    // TODO Auto-generated method stub

    SharedPreferences settings =getSharedPreferences("CASPreferences", MODE_PRIVATE);
    uid = settings.getString("uid", "");
    anyNewCheker();
}


public void anyNewCheker()
{
      HttpClient httpclient = new DefaultHttpClient();

        HttpPost httppost = new HttpPost("http://10.0.2.2/cas/users/anynew.php");
        try
        {
            List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
            nameValuePairs.add(new BasicNameValuePair("uid", uid));
            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
            // Execute HTTP Post Request
            HttpResponse response = httpclient.execute(httppost);

            InputStream is = response.getEntity().getContent();
            BufferedInputStream bis = new BufferedInputStream(is);
            ByteArrayBuffer baf = new ByteArrayBuffer(20);

             int current = 0;
             while((current = bis.read()) != -1){
                    baf.append((byte)current);
             }

            /* Convert the Bytes read to a String. */
            text = new String(baf.toByteArray());
            Log.e("text",text);
            if(!text.equals("0"))
            {



            }
        }
        catch (ClientProtocolException e) {
            // TODO Auto-generated catch block
        Log.e("error","err 1");

    } catch (IOException e) {
            // TODO Auto-generated catch block
        Log.e("error","err 2");

    }

}

}
我该怎么办?
谢谢您

最佳答案

context.getSharedPreferences("CASPreferences", Context.MODE_PRIVATE);

当活动从上下文继承时,mode_private直接在活动中工作。广播接收器没有。

关于android - 共享偏好错误中的MODE_PRIVATE,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7382007/

10-10 08:33