This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SimpleListActivity : BaseActivity() { | |
@BindView(R.id.back_IV) | |
lateinit var backMore: AppCompatImageView | |
@BindView(R.id.recyclerViewMore) | |
lateinit var recyclerView: RecyclerView | |
@BindView(R.id.moreBannerImage) | |
lateinit var bannerImage: ImageView |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SimpleListActivity : BaseActivity() { | |
@BindView(R.id.back) | |
lateinit var back: AppCompatImageView | |
@BindView(R.id.listViewMore) | |
lateinit var listView: ListView | |
@BindView(R.id.moreToolbar) | |
lateinit var toolbar: RelativeLayout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SimpleListActivity : BaseActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
setContentView(R.layout.activity_simple_list) | |
ButterKnife.bind(this) | |
} | |
companion object { | |
val SIMPLE_LIST_KEY = "SIMPLE_LIST_KEY" |
NewerOlder