AI Agent Hub

Blog

In-depth articles on AI agents, LLM engineering, servers, Python and software development.

📝
Learning Notes on OKHttp3, an Android Network Framework
Aug 16, 2017 · Android

This is a complete project for fetching and displaying network images using HTTP GET and POST requests in Android, as well as saving these images to the SD card. The project involves basic network com

# Android 697 views
📝
Android Booting and Startup
Aug 16, 2017 · Android

The article introduces the steps and code implementation for achieving the boot - start function using broadcast receivers in Android. First, create a BroadcastReceiver class through Android Studio.

# Android 723 views
📝
Implementation of an Android Drawing Board
Aug 16, 2017 · Android

This article introduces how to implement a simple drawing board function. The layout includes three buttons and an image for operation and display. The key part in the Java code is the touch event han

# Android 703 views
📝
Playing Music with Android Service
Aug 16, 2017 · Android

This article introduces the method of implementing a music player using a Service. First, a custom Service named MusicService is created, and related operations of MediaPlayer are implemented within i

# Android 763 views
📝
Implementing WeChat-Style Bottom Navigation with Fragments in Android
Aug 16, 2017 · Android

You have successfully implemented a simple bottom navigation bar, where each tab corresponds to a Fragment. This is a common feature in Android applications. Below are some supplementary explanations

# Android 822 views
📝
Displaying Network Images Directly on ImageView in Android
Aug 16, 2017 · Android

This code demonstrates how to implement image network downloading and local caching functionality in an Android application. The following is a detailed analysis of the code: ### 1. **Network Image D

# Android 909 views
📝
Reading SMS and Contacts on Android
Aug 16, 2017 · Android

This tutorial explains in detail how to read SMS and contact information in an Android application. To help you better understand and practice, I will organize and simplify these steps and provide som

# Android 874 views
📝
SQL Format Notes
Jul 06, 2017 · Backend

This content mainly introduces the basic SQL statements for creating, modifying, and deleting tables, as well as data querying, inserting, updating, and deleting. First, when creating a table, you nee

# SQL # database 760 views
📝
Solving Chinese Garbled Characters in MySQL under XAMPP
May 27, 2017 · Backend

This article introduces how to set up UTF-8 encoding in MySQL integrated with XAMPP. First, open the configuration file my.ini in the control panel and add four lines of code: default_character_set =

# XAMPP 842 views
📝
Developing Java Web Projects with IntelliJ IDEA
May 21, 2017 · Backend

This article introduces the basic steps to develop Java Web applications using IntelliJ IDEA Ultimate. First, download and install the software from the official website, choosing the trial version du

# JavaWeb 760 views