物品交易App开发过程中的收获

recyclerview需要导入库

dependencies { compile 'com.android.support:recyclerview-v7:23.1.0' }

CircleImageView 圆形图片需要导入库

dependencies { compile 'de.hdodenhof:circleimageview:1.3.0' }

cardView的应用需要导入相应的库


cardView jar包的下载地址

dependencies {
     compile files('libs/android-support-v7-cardview.jar')
 }

CircleProgressBar需要导入库

compile 'com.dinuscxj:circleprogressbar:1.0.0'

Glide,图片加载库,作者是bumptech。这个库被广泛的运用在google的开源项目中,包括2014年google I/O大会上发布的官方app。Glide和Picasso有90%的相似度,准确的说,就是Picasso的克隆版本。但是在细节上还是有不少区别的。使用时需要导入库

dependencies { compile 'com.github.bumptech.glide:glide:3.5.2' compile 'com.android.support:support-v4:22.0.0' }

MaterialSpinner,spinner下拉列表样式的菜单栏

gradle中compile 'com.jaredrummler:material-spinner:1.1.0'

在xml文件中

android:id="@+id/spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:ms_background_color="?attr/cardViewColor"
app:ms_arrow_tint="?attr/textColor"
app:ms_text_color="?attr/textColor"
android:layout_below="@+id/headerLayout" />

你可能感兴趣的:(android)