Android Open Source - AndroidPlugin Client A Bind Service From Project Back to project page AndroidPlugin .
License The source code is released under:
MIT License
If you think the Android project AndroidPlugin listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code package com.limemobile.app.demo.pluginclienta;
/ * f r o m w w w . j a v a 2 s . c o m * /
import java.io.FileDescriptor;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;
import android.os.IInterface;
import android.os.Parcel;
import android.os.RemoteException;
import android.widget.Toast;
import com.limemobile.app.plugin.PluginClientService;
public class ClientABindService extends PluginClientService {
public static class ClientBinder implements IBinder {
@Override
public String getInterfaceDescriptor() throws RemoteException {
// TODO Auto-generated method stub
return null;
}
@Override
public boolean pingBinder() {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean isBinderAlive() {
// TODO Auto-generated method stub
return false;
}
@Override
public IInterface queryLocalInterface(String descriptor) {
// TODO Auto-generated method stub
return null;
}
@Override
public void dump(FileDescriptor fd, String[] args)
throws RemoteException {
// TODO Auto-generated method stub
}
@Override
public void dumpAsync(FileDescriptor fd, String[] args)
throws RemoteException {
// TODO Auto-generated method stub
}
@Override
public boolean transact(int code, Parcel data, Parcel reply, int flags)
throws RemoteException {
// TODO Auto-generated method stub
return false;
}
@Override
public void linkToDeath(DeathRecipient recipient, int flags)
throws RemoteException {
// TODO Auto-generated method stub
}
@Override
public boolean unlinkToDeath(DeathRecipient recipient, int flags) {
// TODO Auto-generated method stub
return false;
}
public void showToast(Context context) {
Toast.makeText(context, R.string.app_name, Toast.LENGTH_SHORT)
.show();
}
}
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return new ClientBinder();
}
}
Java Source Code List android.widget.ViewStub.java androidx.plmgrdemo.MainActivity.java androidx.plmgrdemo.PlugListViewAdapter.java androidx.pluginmgr.ActivityClassGenerator.java androidx.pluginmgr.ActivityOverider.java androidx.pluginmgr.FileUtil.java androidx.pluginmgr.FrameworkClassLoader.java androidx.pluginmgr.LayoutInflaterWrapper.java androidx.pluginmgr.PlugInfo.java androidx.pluginmgr.PluginActivityLifeCycleCallback.java androidx.pluginmgr.PluginClassLoader.java androidx.pluginmgr.PluginContextWrapper.java androidx.pluginmgr.PluginManager.java androidx.pluginmgr.PluginManifestUtil.java androidx.pluginmgr.ReflectionUtils.java androidx.pluginmgr.XmlManifestReader.java com.limemobile.app.demo.pluginclienta.ClientABindService.java com.limemobile.app.demo.pluginclienta.ClientAStartedService.java com.limemobile.app.demo.pluginclienta.MainActivity.java com.limemobile.app.demo.pluginclienta.TestButton.java com.limemobile.app.demo.pluginclienta.TestFragmentActivity.java com.limemobile.app.demo.pluginclienta.TestFragment.java com.limemobile.app.demo.pluginclientb.ClientBStartedService.java com.limemobile.app.demo.pluginclientb.MainActivity.java com.limemobile.app.demo.pluginhost.HostBindService.java com.limemobile.app.demo.pluginhost.HostStartedService.java com.limemobile.app.demo.pluginhost.MainActivity.java com.limemobile.app.demo.pluginhost.MyApplication.java com.limemobile.app.demo.pluginhost.TestHostClass.java com.limemobile.app.plugin.IPluginActivity.java com.limemobile.app.plugin.IPluginContentProvider.java com.limemobile.app.plugin.IPluginService.java com.limemobile.app.plugin.PluginClientActivity.java com.limemobile.app.plugin.PluginClientFragmentActivity.java com.limemobile.app.plugin.PluginClientService.java com.limemobile.app.plugin.PluginHostApplication.java com.limemobile.app.plugin.PluginHostContentProvider.java com.limemobile.app.plugin.PluginHostDelegateActivity.java com.limemobile.app.plugin.PluginHostDelegateContentProvider.java com.limemobile.app.plugin.PluginHostDelegateFragmentActivity.java com.limemobile.app.plugin.PluginHostDelegateService.java com.limemobile.app.plugin.internal.IPluginActivityDelegate.java com.limemobile.app.plugin.internal.IPluginContentProviderDelegate.java com.limemobile.app.plugin.internal.IPluginServiceDelegate.java com.limemobile.app.plugin.internal.PluginClientDexClassLoader.java com.limemobile.app.plugin.internal.PluginClientInfo.java com.limemobile.app.plugin.internal.PluginClientManager.java com.limemobile.app.plugin.internal.PluginDelegateActivityImpl.java com.limemobile.app.plugin.internal.PluginDelegateContentProviderImpl.java com.limemobile.app.plugin.internal.PluginDelegateServiceImpl.java com.limemobile.app.plugin.internal.ReflectFieldAccessor.java