• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. E

    Apps Flag_grant_read_uri_permission

    I don't understand how to use this to do URI based permissions on a restricted Content Provider. Here is what I did (did not work): 1. made an Activity (GrantAccess) in the same application as the Content Provider with access to it. Only important code is this: public void onCreate(Bundle...
  2. E

    Apps Sharing two apps to share process id

    As the title says I am trying to get two apps to share process ids. Below are the two manifest files for the two applications: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.testapp" android:versionCode="1"...
  3. E

    Apps localization question.

    I've read that one should use the string.xml files in resources to do localization of text. I have one application which will allow the users to modify the text value. Will I be able to do that if I use string.xml? My question is if the string.xml file can be modified, added to and included into...