ylliX - Online Advertising Network

A Practical Guide to Android Interface Definition Language (AIDL) with a Real-Time Example

In the client activity or fragment, bind to the service and use the AIDL interface to invoke methods. public class MainActivity extends AppCompatActivity {private ICurrencyConverter mService;private ServiceConnection mConnection = new ServiceConnection() {@Overridepublic void onServiceConnected(ComponentName name, IBinder service) {// Obtain the AIDL interface proxymService = ICurrencyConverter.Stub.asInterface(service);}@Overridepublic void onServiceDisconnected(ComponentName name) {mService = null;}};@Overrideprotected void onStart() {super.onStart();// Bind […]

MX Player APK (Android App) – Free Download

Powerful video and music player with advanced hardware acceleration and subtitle supports a) HARDWARE ACCELERATION – Hardware acceleration can be applied to more videos with the help of new HW+ decoder. b) MULTI-CORE DECODING – MX Player is the first Android video player which supports multi-core decoding. Test results proved that multi-core device’s performance is […]