Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
app
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

How To

Step1: Add it in your root build.gradle at the end of repositories:

allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Step2: Add the dependency at your moudle build.gradle

dependencies {
	        compile 'com.github.RobertCow:GithubDemo:1.1.9'
	}

Step3: implement BaseApplication and evaluate titleColor

public class App extends BaseApplication {

    @Override
    public void onCreate() {
        super.onCreate();
        titleColor = getResources().getColor(R.color.colorAccent); 标题栏颜色
    }
}

Step4: Change your AndroidManifest.xml

<application
          android:name=".APP"
          ...
        >
  </application>

About

xlibrary+BaseActivity+BaseFragment+okhttpUtils+多分辨率适配+状态栏管理

Topics

Resources

Packages

No packages published

Languages

You can’t perform that action at this time.