Back to project page ElyTheme.
The source code is released under:
GNU General Public License
If you think the Android project ElyTheme listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package it.gcaliendo.elytheme; /*from ww w . j av a 2 s. c o m*/ import android.content.ContentProvider; import android.content.ContentValues; import android.content.UriMatcher; import android.content.res.AssetFileDescriptor; import android.database.Cursor; import android.net.Uri; import java.io.FileNotFoundException; /** * Created by Gustavo Claramunt. * User: adw * Date: 23/01/11 * Time: 18:31 */ public class DocksProvider extends ContentProvider{ @Override public boolean onCreate() { return false; } @Override public Cursor query(Uri uri, String[] strings, String s, String[] strings1, String s1) { return null; } @Override public String getType(Uri uri) { return "image/*"; } @Override public AssetFileDescriptor openAssetFile(Uri uri, String mode) throws FileNotFoundException { if(uri.getPathSegments().size()>0){ try{ int resId=Integer.valueOf(uri.getPathSegments().get(0)); return this.getContext().getResources().openRawResourceFd(resId); }catch (Throwable t){ return null; } }else{ return null; } } @Override public Uri insert(Uri uri, ContentValues contentValues) { return null; } @Override public int delete(Uri uri, String s, String[] strings) { return 0; } @Override public int update(Uri uri, ContentValues contentValues, String s, String[] strings) { return 0; } }