2つのandroidプログラムでリソースを共有する方法
2つのプログラムをリソースに貢献させる方法:共有プロセスid
手順:1:共有プロセスid方式2:反射メカニズムを利用してclassをロードし、クラスを操作する
3:クロスコンパイル、インストール.
共有リソースは何ができますか?
1.肌を変えたり、テーマを変えたりする機能.テーマと皮膚はapkから独立することができます
2.他に何ができる?広範な友達にいくつか並べてもらって、ほほほ
次に、このメインプログラムのコードインスタンスです.他のプログラムは、このプログラムと共有されているプロセスidであれば実現できます.
インベントリファイルmanifestで定義します.
android:sharedUserId="share.scl"
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.share.main"
android:versionCode="1"
android:sharedUserId="share.scl"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".ShareMainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
package com.share.main;
import java.lang.reflect.Field;
import android.app.Activity;
import android.content.Context;
import android.content.pm.PackageManager.NameNotFoundException;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class ShareMainActivity extends Activity implements OnClickListener{
/** Called when the activity is first created. */
private static final String TAG = ShareMainActivity.class.getSimpleName();
Button button;
Handler mHandler = new Handler(){
@Override
public void handleMessage(Message msg) {
button.setBackgroundDrawable((Drawable)msg.obj);
button.setText(null);
TextView text = (TextView) findViewById(R.id.text);
text.setText(getResources().getString(R.string.hellp2));
}
};
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
button = (Button) findViewById(R.id.button1);
button.setOnClickListener(this);
}
public void onClick(View v) {
if(v == button){
new Thread(){
@Override
public void run() {
getOtherAppRes();
}
}.start();
}
}
private void getOtherAppRes(){
try {
//Context.CONTEXT_IGNORE_SECURITY: 。
//Context.CONTEXT_INCLUDE_CODE: 。
Context ontherContext = createPackageContext("com.android.test.login", Context.CONTEXT_IGNORE_SECURITY|Context.CONTEXT_INCLUDE_CODE);
Class rClass = ontherContext.getClassLoader().loadClass("com.android.test.login.R");
Class[] classes = rClass.getClasses();
int picId = 0;
for(int i = 0; i<classes.length; i++){
Class c = classes[i];
Log.i(TAG, "class name:" + c.getSimpleName() + "-------------");
Field[] fes = c.getFields();
for(int j = 0; j < fes.length; j++){
Field f = fes[j];
String fName = f.getName();
Log.i(TAG, "field name:" + fName + "***********************" );
if("h001".equals(fName)){
picId = f.getInt(fName);
}
}
}
if(picId != 0){
Message msg = new Message();
msg.obj = ontherContext.getResources().getDrawable(picId);
mHandler.sendMessage(msg);
}
Log.i(TAG, "finish__________________");
} catch (NameNotFoundException e) {
} catch (ClassNotFoundException e) {
} catch (IllegalArgumentException e) {
} catch (IllegalAccessException e) {
}
}
}