about-page

来源:互联网 发布:读取sql文件软件下载 编辑:程序博客网 时间:2024/06/18 06:59

about-page

项目地址:drakeet/about-page
简介:A nice about page based on MultiType, material design and easy to use.

License maven-central

A nice about page based on MultiType, material design and easy to use.

From the PureMosaic App:

Get it on Google Play

Getting started

In your build.gradle:

dependencies {    compile 'me.drakeet.support:about:0.9.9'    compile 'me.drakeet.multitype:multitype:2.2.0-beta1'}

Usage

public class MainActivity extends AboutActivity {    @SuppressLint("SetTextI18n") @Override    protected void onCreateHeader(ImageView icon, TextView slogan, TextView version) {        icon.setImageResource(R.mipmap.ic_launcher);        slogan.setText("About Page By drakeet");        version.setText("v" + BuildConfig.VERSION_NAME);    }    @Override protected void onItemsCreated(@NonNull Items items) {        items.add(new Category("介绍与帮助"));        items.add(new Card(getString(R.string.card_content), "分享"));        items.add(new Line());        items.add(new Category("Developers"));        items.add(new Contributor(R.drawable.avatar_drakeet, "drakeet", "Developer & designer"));        items.add(new Contributor(R.drawable.avatar_drakeet, "小艾大人", "Developer"));        items.add(new Line());        items.add(new Category("Open Source Licenses"));        items.add(new License("MultiType", "drakeet", License.APACHE_2,            "https://github.com/drakeet/MultiType"));        items.add(new License("about-page", "drakeet", License.APACHE_2,            "https://github.com/drakeet/about-page"));    }    @Override protected void onActionClick(View action) {        ...    }}

TODO

  • Add a inner activity and builder for convenience

  

1 0