Java Code Examples for android.net.Uri#getBooleanQueryParameter()

The following examples show how to use android.net.Uri#getBooleanQueryParameter() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: QuantumFluxContentProvider.java    From QuantumFlux with Apache License 2.0 6 votes vote down vote up
private void notifyChanges(Uri uri, TableDetails tableDetails) {

        Boolean sync = uri.getBooleanQueryParameter(PARAMETER_SYNC, true);
        getContext().getContentResolver().notifyChange(uri, null, sync);

        List<Class<?>> changeListeners = tableDetails.getChangeListeners();
        if (!changeListeners.isEmpty()) {

            for (int i = 0; i < changeListeners.size(); i++) {
                Class<?> changeListener = changeListeners.get(i);
                TableDetails changeListenerDetails = mDatabase.getTableDetailsCache().findTableDetails(getContext(), changeListener);

                if (changeListenerDetails == null) {
                    continue;
                }

                //Change listeners are registered on views, so the entire view needs to be updated if changes to its data occurs
                Uri changeUri = mUriMatcherHelper.generateItemUri(changeListenerDetails);
                getContext().getContentResolver().notifyChange(changeUri, null, sync);
            }
        }
    }
 
Example 2
Source File: CPOrmContentProvider.java    From CPOrm with MIT License 6 votes vote down vote up
private void notifyChanges(Uri uri, TableDetails tableDetails) {

        if(!uri.getBooleanQueryParameter(PARAMETER_NOTIFY_CHANGES, true))
            return;

        Boolean sync = uri.getBooleanQueryParameter(PARAMETER_SYNC, true);
        getContext().getContentResolver().notifyChange(uri, null, sync);

        List<Class<?>> changeListeners = tableDetails.getChangeListeners();
        if (!changeListeners.isEmpty()) {

            int size = changeListeners.size();
            for (int i = 0; i < size; i++) {
                Class<?> changeListener = changeListeners.get(i);
                TableDetails changeListenerDetails = database.getTableDetailsCache().findTableDetails(getContext(), changeListener);

                if (changeListenerDetails == null)
                    continue;

                //Change listeners are registered on views, so the entire view needs to be updated if changes to its data occurs
                Uri changeUri = uriMatcherHelper.generateItemUri(changeListenerDetails);
                getContext().getContentResolver().notifyChange(changeUri, null, sync);
            }
        }
    }
 
Example 3
Source File: WXDebugActivity.java    From ucar-weex-core with Apache License 2.0 5 votes vote down vote up
private void handleDecodeInternally(String code) {

        if (!TextUtils.isEmpty(code)) {
            Uri uri = Uri.parse(code);
            if (uri.getQueryParameterNames().contains("bundle")) {
                WXEnvironment.sDynamicMode = uri.getBooleanQueryParameter("debug", false);
                WXEnvironment.sDynamicUrl = uri.getQueryParameter("bundle");
                String tip = WXEnvironment.sDynamicMode ? "Has switched to Dynamic Mode" : "Has switched to Normal Mode";
                Toast.makeText(this, tip, Toast.LENGTH_SHORT).show();
                finish();
                return;
            } else if (uri.getQueryParameterNames().contains("_wx_devtool")) {
                WXEnvironment.sRemoteDebugProxyUrl = uri.getQueryParameter("_wx_devtool");
                WXEnvironment.sDebugServerConnectable = true;
                WXSDKEngine.reload();
                Toast.makeText(this, "devtool", Toast.LENGTH_SHORT).show();
                return;
            } else if (code.contains("_wx_debug")) {
                uri = Uri.parse(code);
                String debug_url = uri.getQueryParameter("_wx_debug");
                WXSDKEngine.switchDebugModel(true, debug_url);
                finish();
            } else {
                Toast.makeText(this, code, Toast.LENGTH_SHORT).show();
                Intent intent = new Intent();
                intent.setAction("android.intent.action.VIEW");
//                intent.setPackage(getPackageName());
                intent.setData(Uri.parse(code));
                startActivity(intent);
            }
        }
    }
 
Example 4
Source File: WXPageActivity.java    From yanxuan-weex-demo with MIT License 5 votes vote down vote up
private void handleDecodeInternally(String code) {

    if (!TextUtils.isEmpty(code)) {
      Uri uri = Uri.parse(code);
      if (uri.getQueryParameterNames().contains("bundle")) {
        WXEnvironment.sDynamicMode = uri.getBooleanQueryParameter("debug", false);
        WXEnvironment.sDynamicUrl = uri.getQueryParameter("bundle");
        String tip = WXEnvironment.sDynamicMode ? "Has switched to Dynamic Mode" : "Has switched to Normal Mode";
        Toast.makeText(this, tip, Toast.LENGTH_SHORT).show();
        finish();
        return;
      } else if (uri.getQueryParameterNames().contains("_wx_devtool")) {
        WXEnvironment.sRemoteDebugProxyUrl = uri.getQueryParameter("_wx_devtool");
        WXEnvironment.sDebugServerConnectable = true;
        WXSDKEngine.reload();
        Toast.makeText(this, "devtool", Toast.LENGTH_SHORT).show();
        return;
      } else if (code.contains("_wx_debug")) {
        uri = Uri.parse(code);
        String debug_url = uri.getQueryParameter("_wx_debug");
        WXSDKEngine.switchDebugModel(true, debug_url);
        finish();
      } else {
        JSONObject data = new JSONObject();
        try {
          data.put("WeexBundle", Uri.parse(code).toString());
          Intent intent = new Intent(WXPageActivity.this, WXPageActivity.class);
          intent.setData(Uri.parse(data.toString()));
          startActivity(intent);
        } catch (JSONException e) {
          e.printStackTrace();
        }
      }
    }
  }
 
Example 5
Source File: IndexActivity.java    From WeexOne with MIT License 5 votes vote down vote up
private void handleDecodeInternally(String code) {

        if (!TextUtils.isEmpty(code)) {
            Uri uri = Uri.parse(code);
            if (uri.getQueryParameterNames().contains("bundle")) {
                WXEnvironment.sDynamicMode = uri.getBooleanQueryParameter("debug", false);
                WXEnvironment.sDynamicUrl = uri.getQueryParameter("bundle");
                String tip = WXEnvironment.sDynamicMode ? "Has switched to Dynamic Mode" : "Has switched to Normal Mode";
                Toast.makeText(this, tip, Toast.LENGTH_SHORT).show();
                finish();
                return;
            } else if (uri.getQueryParameterNames().contains("_wx_devtool")) {
                WXEnvironment.sRemoteDebugProxyUrl = uri.getQueryParameter("_wx_devtool");
                WXSDKEngine.reload();
                Toast.makeText(this, "devtool", Toast.LENGTH_SHORT).show();
                finish();
                return;
            } else if (code.contains("_wx_debug")) {
                uri = Uri.parse(code);
                String debug_url = uri.getQueryParameter("_wx_debug");
                WXSDKEngine.switchDebugModel(true, debug_url);
                finish();
            } else {
                Toast.makeText(this, code, Toast.LENGTH_SHORT)
                        .show();
                Intent intent = new Intent(Constants.ACTION_OPEN_URL);
                intent.setPackage(getPackageName());
                intent.setData(Uri.parse(code));
                startActivity(intent);
            }
        }
    }
 
Example 6
Source File: CPOrmContentProvider.java    From CPOrm with MIT License 5 votes vote down vote up
@Override
public Cursor query(@NonNull Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {

    TableDetails tableDetails = uriMatcherHelper.getTableDetails(uri);
    SQLiteDatabase db = database.getReadableDatabase();
    String limit = constructLimit(uri);
    Boolean distinct = uri.getBooleanQueryParameter("DISTINCT", false);
    String groupBy = uri.getQueryParameter("GROUP_BY");
    String having = uri.getQueryParameter("HAVING");

    if (debugEnabled) {
        CPOrmLog.d("********* Query **********");
        CPOrmLog.d("Uri: " + uri);
        CPOrmLog.d("Projection: " + Arrays.toString(projection));
        CPOrmLog.d("Selection: " + selection);
        CPOrmLog.d("Args: " + Arrays.toString(selectionArgs));
        CPOrmLog.d("Sort: " + sortOrder);
        CPOrmLog.d("Limit: " + limit);
        CPOrmLog.d("Distinct: " + distinct);
        CPOrmLog.d("Group By: " + groupBy);
        CPOrmLog.d("Having: " + having);
    }

    Cursor cursor;

    if (uriMatcherHelper.isSingleItemRequested(uri)) {

        String itemId = uri.getLastPathSegment();
        cursor = db.query(true, tableDetails.getTableName(), projection, tableDetails.getPrimaryKeyClause(), new String[]{itemId}, null, null, null, "1");
    } else
        cursor = db.query(distinct, tableDetails.getTableName(), projection, selection, selectionArgs, groupBy, having, sortOrder, limit);

    cursor.setNotificationUri(getContext().getContentResolver(), uri);

    return cursor;
}
 
Example 7
Source File: CPOrmContentProvider.java    From CPOrm with MIT License 5 votes vote down vote up
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
@Override
public Cursor query(@NonNull Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder, CancellationSignal cancellationSignal) {

    TableDetails tableDetails = uriMatcherHelper.getTableDetails(uri);
    SQLiteDatabase db = database.getReadableDatabase();
    String limit = constructLimit(uri);
    Boolean distinct = uri.getBooleanQueryParameter("DISTINCT", false);
    String groupBy = uri.getQueryParameter("GROUP_BY");
    String having = uri.getQueryParameter("HAVING");

    if (debugEnabled) {
        CPOrmLog.d("********* Query **********");
        CPOrmLog.d("Uri: " + uri);
        CPOrmLog.d("Projection: " + Arrays.toString(projection));
        CPOrmLog.d("Selection: " + selection);
        CPOrmLog.d("Args: " + Arrays.toString(selectionArgs));
        CPOrmLog.d("Sort: " + sortOrder);
        CPOrmLog.d("Limit: " + limit);
        CPOrmLog.d("Distinct: " + distinct);
        CPOrmLog.d("Group By: " + groupBy);
        CPOrmLog.d("Having: " + having);
    }

    Cursor cursor;

    if (uriMatcherHelper.isSingleItemRequested(uri)) {

        String itemId = uri.getLastPathSegment();
        cursor = db.query(true, tableDetails.getTableName(), projection, tableDetails.getPrimaryKeyClause(), new String[]{itemId}, null, null, null, "1", cancellationSignal);
    } else
        cursor = db.query(distinct, tableDetails.getTableName(), projection, selection, selectionArgs, groupBy, having, sortOrder, limit, cancellationSignal);

    cursor.setNotificationUri(getContext().getContentResolver(), uri);

    return cursor;
}
 
Example 8
Source File: DocumentsContract.java    From android_9.0.0_r45 with Apache License 2.0 4 votes vote down vote up
/** {@hide} */
public static boolean isManageMode(Uri uri) {
    return uri.getBooleanQueryParameter(PARAM_MANAGE, false);
}
 
Example 9
Source File: DocumentsContract.java    From FireFiles with Apache License 2.0 4 votes vote down vote up
public static boolean isManageMode(Uri uri) {
    return uri.getBooleanQueryParameter(PARAM_MANAGE, false);
}
 
Example 10
Source File: DocumentsContract.java    From FireFiles with Apache License 2.0 4 votes vote down vote up
public static boolean isManageMode(Uri uri) {
    return uri.getBooleanQueryParameter(PARAM_MANAGE, false);
}
 
Example 11
Source File: DocumentsContract.java    From FireFiles with Apache License 2.0 4 votes vote down vote up
public static boolean isManageMode(Uri uri) {
    return uri.getBooleanQueryParameter(PARAM_MANAGE, false);
}