1 2 3 4 5 6 > >>   Sort: Rank

Downloading and Installing Android SDK R24
This section provides a tutorial example on how to download and install Android SDK (Software Development Kit) Revision 24 on Windows systems.
2022-12-20, 398👍, 2💬

💬 2022-12-20 Jeremy: Thanks

"ant debug" Command and Build Error
This section provides a tutorial example on the 'ant' build command. An error occurred when running 'ant debug'. The error message says '...${aapt}': CreateProcess error=2, The system cannot find the file specified.
2022-12-10, 208👍, 1💬

ActivityLog Test - Activity Paused and Resumed
This section tries to test activity lifecycle with the ActivityLog application in case user pauses the activity and resumes it later.
2022-12-10, 125👍, 1💬

Android Application Package (APK) Files
This chapter provides tutorial notes on Android application package (APK) files. Topics include introduction to APK file; packaging application files into a single APK file; using 'adb' command to install APK files; using 'adb' command to copy file to Android emulator.
2022-12-10, 366👍, 4💬

💬 2022-08-04 Eddie S: Very Useful! You may also be interested in: APK MODS

💬 2022-08-04 Eddie Stallings: Infromative! Download Android apks here: droidmods.co

Running "adb" on USB Debugging Interface
This section provides a tutorial example on how to run 'adb' commands on Samsung Android mini tablet through the USB debugging interface. 'adb -d' is to run commands on the USB connected Android device. But if there is only 1 device, '-d' option is not needed.
2022-10-01, 469👍, 0💬

Installing Android PDF Viewer APK File
This section provides a tutorial example on how to install the Android PDF Viewer APK file to the Android emulator using the 'adb' tool provided in the SDK package.
2022-10-01, 442👍, 0💬

"dalvikvm" Command to Run Java Application
This section provides a tutorial example on how to use 'dalvikvm' command line tool to run a Java application on the Dalvik VM (Virtual Machine).
2022-10-01, 438👍, 0💬

Java Exceptions in AndroidRuntime Error Log
This section provides a tutorial on how use the 'adb logcat' command to retrieve Java exceptions from the AndroidRuntime error log entries.
2022-10-01, 309👍, 0💬

onCreate() and Other Callback Methods
This section describes activity callback methods: onCreate(), onStart(), onResume(), onPause(), onStop(), onDestroyed(), and onRestart().
2022-10-01, 259👍, 0💬

System.getenv() Method - System Environment Variables
This section provides tutorial example on how to display system environment variables using the java.lang.System.getenv() method.
2022-10-01, 239👍, 0💬

Turning on USB Debugging on Samsung Galaxy Tab 3
This section provides a tutorial example on how to turn on 'USB Debugging' on Samsung Galaxy Tab 3 mini tablet by tapping 'Build Number' 7 times.
2022-10-01, 235👍, 0💬

"adb logcat" Command Arguments - Output Filters
This section describes how to use the 'adb logcat' command arguments to filter out unwanted log entries. 'adb logcat dalvikvm:V *:S' means dump all log entries from the Java Virtual Machine, dalvikvm, and nothing from all other processes.
2022-10-01, 223👍, 0💬

System.getProperties() - Retrieving System Properties
This section provides tutorial example on how to use the java.lang.System.getProperties ()method to retrieve and display Android system properties.
2022-10-01, 222👍, 0💬

About This Book
This section provides some detailed information about this book - __title__.
2022-10-01, 221👍, 0💬

"adb shell" - Remote Shell Interface
This section describes the 'adb shell' command, which gives you a shell interface to the connected Android operating system. The shell interface allows you to manage the Android file system and invoke Android command line programs.
2022-10-01, 215👍, 0💬

Bourne Shell Command Line Examples
This section provides a quick introduction of the Bourne shell which is the default shell on the Android system, which is based on the Linux system, which is based on Unix system.
2022-10-01, 214👍, 0💬

View, ViewGroup, Layout, and Widget
This section describes UI class and object terminologies used in Android SDK documentation. View and ViewGroup are base classes serving as UI building blocks. Widget and Layout are classes extended from View or ViewGroup class providing specific UI functions.
2022-10-01, 213👍, 0💬

"adb logcat" Command - Displaying System Logs
This section describes the 'adb logcat' command that can be used to print out Android system log data for debugging purpose.
2022-10-01, 182👍, 0💬

Setting JAVA_HOME Environment Variable
This section provides a tutorial example on how to set up JAVA_HOME environment variable to run development tools to build and test Android apps.
2022-10-01, 181👍, 0💬

Android 5.1.1 Emulator File System Hierarchy
This section describes file system hierarchy used by the Android 5.1.1 emulator system.
2022-10-01, 181👍, 0💬

Android 5.1.1 Emulator File Systems
This section describes file systems used by the Android 5.1.1 emulator system. 9 file systems are supported in the Android emulator: /dev, /sys/fs/cgroup, /mnt/asec, /mnt/obb, /system, /data, /cache, /mnt/media_rw/sdcard, and /storage/sdcard.
2022-10-01, 180👍, 0💬

Using "adb logcat" Command to Track the Lifecycle of an Application
This section provides a tutorial example how to use the 'adb logcat' command to track the lifecycle of an application. The 'events' log buffer provides log entries for each Activity callback method.
2022-10-01, 175👍, 0💬

AndroidView v4.0 - Inserting Views to Parent Layout
This section provides a tutorial example on how to identify and reference layouts or views defined the layout resource file. This is needed to mix layouts and views created in Java code with those defined in the resource file.
2022-10-01, 161👍, 0💬

Archived: Downloading and Installing Apache Ant 1.8
This section describes how to download and install Apache Ant 1.8.3 on a Windows system. Apache Ant is a popular Java application build tool that allows you to automate the Java application build process.
2022-10-01, 158👍, 0💬

1 2 3 4 5 6 > >>   Sort: Rank