PopupBubble 开源项目教程
PopupBubble:parking: Easily add and customise “New Post” popup button with the feeds (RecyclerView) of your app.项目地址:https://gitcode.com/gh_mirrors/po/PopupBubble
1. 项目的目录结构及介绍
PopupBubble 项目的目录结构如下:
PopupBubble/
├── app/
│ ├── src/
│ │ ├── main/
│ │ │ ├── java/
│ │ │ │ └── com/
│ │ │ │ └── webianks/
│ │ │ │ └── popupbubble/
│ │ │ │ ├── MainActivity.java
│ │ │ │ └── PopupBubble.java
│ │ │ └── res/
│ │ │ ├── drawable/
│ │ │ ├── layout/
│ │ │ ├── mipmap/
│ │ │ └── values/
│ │ └── test/
│ └── build.gradle
├── build.gradle
├── gradle.properties
├── settings.gradle
└── README.md
目录结构介绍
app/
:应用程序的主要目录。
src/
:源代码目录。
main/
:主代码目录。
java/
:Java 源代码目录。
com/webianks/popupbubble/
:PopupBubble 项目的主要代码目录。
MainActivity.java
:应用程序的主活动文件。PopupBubble.java
:PopupBubble 的主要功能实现文件。 res/
:资源文件目录。
drawable/
:可绘制资源目录。layout/
:布局文件目录。mipmap/
:图标资源目录。values/
:值资源目录。 test/
:测试代码目录。 build.gradle
:应用程序的构建脚本。 build.gradle
:项目的根构建脚本。gradle.properties
:Gradle 属性文件。settings.gradle
:项目设置文件。README.md
:项目说明文件。
2. 项目的启动文件介绍
项目的启动文件是 MainActivity.java
,位于 app/src/main/java/com/webianks/popupbubble/
目录下。
MainActivity.java
package com.webianks.popupbubble;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
MainActivity.java
是应用程序的主活动文件,负责启动应用程序并加载主界面布局 activity_main.xml
。
3. 项目的配置文件介绍
项目的配置文件主要包括 build.gradle
和 gradle.properties
。
build.gradle
项目的根目录下的 build.gradle
文件:
// 项目的根构建脚本
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
应用程序目录下的 build.gradle
文件:
// 应用程序的构建脚本
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
defaultConfig {
applicationId "com.webianks.popupbubble"
minSdkVersion 16
targetSdkVersion 29
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:29.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3
PopupBubble:parking: Easily add and customise “New Post” popup button with the feeds (RecyclerView) of your app.项目地址:https://gitcode.com/gh_mirrors/po/PopupBubble