Android Tutorial

How To Fix Qemu-System-X86_64.Exe Has Stopped Working Error When Starting AVD

When I start an android virtual device ( AVD ) in my new machine ( which I just bought these days.), I meet an error message like this Qemu-System-X86_64.Exe Has Stopped Working. This error stopped my android virtual machine to start. After investigate for almost half a day, I finally find the reason why this

How To Fix Qemu-System-X86_64.Exe Has Stopped Working Error When Starting AVD Read More »

How To Resolve Android Studio SDK Platform-Tools Version Is Too Old Error

When you update your android SDK version to a higher version, you may encounter the below errors when you edit exist java files in android studio. The SDK platform-tools version (26.0.1) is too old to check APIs compiled with API 27; please update To resolve this error, you just need to follow the below steps.

How To Resolve Android Studio SDK Platform-Tools Version Is Too Old Error Read More »

How To Copy / Paste Clipboard Data In Android

This article will show you how to copy data to android system clipboard and how to paste android system clipboard data to target text view. 1. Copy Data To System Clipboard Steps. Get system android.content.ClipboardManager object. final android.content.ClipboardManager clipboardManager = (ClipboardManager)getSystemService(CLIPBOARD_SERVICE); Create a android.content.ClipData object and set source data in it ClipData clipData = ClipData.newPlainText(“Source Text”,

How To Copy / Paste Clipboard Data In Android Read More »

Android Display Data In Table Layout Statically And Programmatically Example

If you want to display data in table format just like the Html table in the android application, you can use TableLayout and TableRow. TableLayout behaves like an Html tag table and TableRow behaves like tag tr. Each TableRow can contain multiple android UI components, each UI component is displayed in a table row column.

Android Display Data In Table Layout Statically And Programmatically Example Read More »