diff options
author | Allan Wang <me@allanwang.ca> | 2020-02-23 16:03:12 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-23 16:03:12 -0800 |
commit | 61dddd883908a803e3ee55de537e0a30ee4ef90d (patch) | |
tree | 1c0793625b9d05c98b4d0abfccd35ffa90819094 /sample/src/main/kotlin/ca/allanwang | |
parent | 3fa13a3a84d34fd0d96f26d6c5dea0e0671dd6c4 (diff) | |
parent | 5038b93102949bb127b6cb9cb26809490739b3fa (diff) | |
download | kau-61dddd883908a803e3ee55de537e0a30ee4ef90d.tar.gz kau-61dddd883908a803e3ee55de537e0a30ee4ef90d.tar.bz2 kau-61dddd883908a803e3ee55de537e0a30ee4ef90d.zip |
Merge pull request #249 from AllanWang/about-activity
About activity
Diffstat (limited to 'sample/src/main/kotlin/ca/allanwang')
-rw-r--r-- | sample/src/main/kotlin/ca/allanwang/kau/sample/AboutActivity.kt | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/sample/src/main/kotlin/ca/allanwang/kau/sample/AboutActivity.kt b/sample/src/main/kotlin/ca/allanwang/kau/sample/AboutActivity.kt index ffe769a..59f1c92 100644 --- a/sample/src/main/kotlin/ca/allanwang/kau/sample/AboutActivity.kt +++ b/sample/src/main/kotlin/ca/allanwang/kau/sample/AboutActivity.kt @@ -23,15 +23,17 @@ import com.mikepenz.fastadapter.GenericItem /** * Created by Allan Wang on 2017-06-27. */ -class AboutActivity : AboutActivityBase(R.string::class.java, { - cutoutDrawableRes = R.drawable.kau - textColor = 0xde000000.toInt() - backgroundColor = 0xfffafafa.toInt() - accentColor = 0xff00838F.toInt() - cutoutForeground = 0xff18FFFF.toInt() - faqXmlRes = R.xml.kau_faq - faqParseNewLine = false -}) { +class AboutActivity : AboutActivityBase(R.string::class.java) { + + override fun Configs.buildConfigs() { + cutoutDrawableRes = R.drawable.kau + textColor = 0xde000000.toInt() + backgroundColor = 0xfffafafa.toInt() + accentColor = 0xff00838F.toInt() + cutoutForeground = 0xff18FFFF.toInt() + faqXmlRes = R.xml.kau_faq + faqParseNewLine = false + } override fun postInflateMainPage(adapter: FastItemThemedAdapter<GenericItem>) { adapter.add(CardIItem { |