Android four components communication core

preface Series of articles: Display process from Android Activity creation to View Android four components communication core We know that the four components of Android: Activity/Service/Broadcast/ContentProvider can conduct cross process communication, which are the ability to realize cross process communication with Binder. There are ...

Added by bj_ on Mon, 04 Oct 2021 21:46:46 +0300

m3u8.sqlite to mp4(txkt)

During the Mid Autumn Festival holiday, I wanted to have a good rest. My girlfriend said that the Tencent classroom courses downloaded from my mobile phone could be transferred to the computer because there was not enough space on my mobile phone. I thought it was not very simple.. Sure enough, it was not as simple as I thought. I found the vid ...

Added by phorman on Thu, 23 Sep 2021 05:50:07 +0300

Implementation of custom alarm clock developed by Android

Android custom settings alarm clock Alarm time setting and display The layout of the alarm clock is very simple, that is, a simple time setting, so you can write a simple layout button yourself, but please repeat it. In addition, use the time dialog TimePickerDialog to set the time, and use Calendar to obtain the time of the current syste ...

Added by Chris1981 on Fri, 10 Sep 2021 00:36:47 +0300

[embedded experiment], Alibaba Java social recruitment interview

4, Experimental equipment and tools (including software debugging tools) 5, Experimental steps Experiment 1: transplant embedded database sqlite 1 ~ 5: install sqlite database 6: Use of database Method 1: command to manipulate the database Mode 2: program to manipulate the database Outside the experiment (you can see if you a ...

Added by crash4o4 on Sun, 05 Sep 2021 22:40:48 +0300

ScrollView (RecyclerView, etc.) does not look at absolute blood loss

@Override public void requestChildFocus(View child, View focused) { if (!mIsLayoutDirty) { scrollToChild(focused); } else { mChildToScrollTo = focused; } super.requestChildFocus(child, focused); } Because the requestLayout() method was called before addViewInner: @Override public void requestLayout() { mIsLayou ...

Added by Pehape on Fri, 03 Sep 2021 08:51:56 +0300

Lab 2 Android Data Storage Instance Address Book

Lab 2 Android Data Storage Instance Address Book 1. Experimental Purpose (1) Skilled in UI interface design process and methods; (2) To further understand the establishment and operation of the SQLite database; (3) Skilled in Andriod database programming. 2. Experimental Environment (1) Hardware: PC, ot ...

Added by tippy_102 on Wed, 17 Jun 2020 04:20:28 +0300

ASP.NET Core file upload

Original text: ASP.NET Core file upload preface First blog post Introduced how to asp.net Core uses Redis and Protobuf for Session caching. This article is a small function used in the development process, how to do single file and multi file upload. If you think it will help you, you may as well click "recommend". cat ...

Added by bradleybebad on Mon, 25 May 2020 05:56:29 +0300

C ා data operation series - 7. EF Core navigation attribute configuration

In the previous article, I introduced the logic of relationship mapping in Entity Framework Core. The foreign key mapping of EF left in the previous article is not mentioned, that is, the relationship of one-to-one, one to many, many to one, many to many, etc. This article will give you a detailed analysis of how to set up these mappings. 1. Re ...

Added by imawake on Sun, 17 May 2020 08:59:50 +0300

Android Project Actual Series - based on Bosch Valley profile

Please be patient to read this module because of its large content and length. The profile module is divided into two parts [x] personal data [x] Data Modification 1. Personal Data 1. Profile interface (1) Create a profile interface Create a java class named UserInfoActivity in the com.buxuegu.activity package.Create a layout file name ...

Added by riddhi on Mon, 04 May 2020 23:33:23 +0300

Android advanced - using LitePal to operate database

Learn to use LitePal to operate database About LitePal: LitePal is an Android open source library, which makes it very easy for developers to use SQLite database. You can do most of the database operations without writing a single SQL statement, including creating tables, updating tables, constraining operations, ...

Added by freeloader on Wed, 01 Apr 2020 21:23:32 +0300