一个基本Android工程的搭建

一个基本Android工程的搭建

1.网络框架的引用

Rxjava+Retrofit

    /*
     这里是是Rxjava+Retrofit
     */
    compile 'io.reactivex:rxjava:1.1.3'
    compile 'io.reactivex:rxandroid:1.1.0'
    compile 'com.squareup.retrofit2:retrofit:2.0.2'
    compile 'com.squareup.retrofit2:converter-gson:2.0.2'
    compile 'com.squareup.retrofit2:converter-scalars:2.0.2'
    compile 'com.squareup.retrofit2:adapter-rxjava:2.0.2'
    compile 'com.squareup.okhttp3:okhttp:3.2.0'
    compile 'com.squareup.okio:okio:1.8.0'

butterknife

    compile 'com.jakewharton:butterknife:7.0.1'

gson

    compile files('libs/gson-2.6.2.jar')

2.页面UI风格的设置

一个标准的Material Design样式

    

-V21

    

其中使用了自定义颜色,所以需要设置一下

values/attrs.xml

    
    
        
        
        
        
        
    

你可能感兴趣的:(一个基本Android工程的搭建)