程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-沒有activity如何使用getContentResolver

android-沒有activity如何使用getContentResolver

編輯:編程綜合問答
沒有activity如何使用getContentResolver

class如下:

public class sendInformation{

  public void test() throws Exception {
    Uri uri = SuspiciousActivityTable.CONTENT_URI;
    getContentResolver().update(uri, values2, where,new String[]{"Null"});
    }
  }
}

但是系統說getContentResolver()不存在,我知道需要context或者activity來實現。但是不知道怎麼獲得正確的context?

最佳回答:


你這個類的test()方法肯定是有activity或者service調用的,所以你可以寫一個有參構造函數

public class sendInformation{
      private Context context;
      public sendInformation(Context context){
            this.context = context;
      }
      public void test() throws Exception {
            Uri uri = SuspiciousActivityTable.CONTENT_URI;
            context.getContentResolver().update(uri, values2, where,new String[]{"Null"});
      }
}

你再試試,看可以麼?

suannai0314
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved