技術と本について書くブログ

技術と本について書くblog。技術メモなど雑記を書いているblog。

2019-09-06から1日間の記事一覧

アノーテーション@VisibleForTestingをつける

Androidのコードを読んでいると@VisibleForTestingというアノテーションがある。 これはテストのためにつけたという意味 @VisibleForTesting public hoge() { }

ViewをConstraintLayoutを継承して呼ぶ時

class View1 : ConstraintLayout { constructor(context: Context) : super(context) constructor(context: Context, attrs: AttributeSet) : super(context, attrs) constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int) : super(contex…