# AdapterApplication **Repository Path**: Yumore/AdapterApplication ## Basic Information - **Project Name**: AdapterApplication - **Description**: No description available - **Primary Language**: Android - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-23 - **Last Updated**: 2021-07-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # AdapterApplication Adapter for RecyclerView ### idea 集成 cmder "cmd.exe" /k ""%CMDER_ROOT%\vendor\init.bat"" ### Android 10/11 AsyncTask 过时 ### Android Studio 4.0创建类出现两次弹窗 File ---> Setting ---> Editor ---> File and Code Templates下选中Class #if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end #if (${IMPORT_BLOCK} != "")${IMPORT_BLOCK} #end #parse("File Header.java") #if (${VISIBILITY} == "PUBLIC")public #end #if (${ABSTRACT} == "TRUE")abstract #end #if (${FINAL} == "TRUE")final #end class ${NAME} #if (${SUPERCLASS} != "")extends ${SUPERCLASS} #end #if (${INTERFACES} != "")implements ${INTERFACES} #end { } 修改为 #if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end #parse("File Header.java") public class ${NAME} { } http://git.18daxue.net/clean/cleanfast http://git.18daxue.net/clean/cleanmain