社内se × プログラマ × ビッグデータ

プログラミングなどITに興味があります。

2020-06-17から1日間の記事一覧

(自分用) Kotlin Quiz 1

Q1. Kotlinの全てのクラスは共通の ? スーパークラスを持つか ?Q2. 以下の Derived クラスに明示的に Base クラスでスーパータイプを宣言してください。 open class Base(p: Int) class Derived(p: Int) ??? Q3. Kotlin内のクラスは、 プライマリコンストラ…

View has onTouchListner called on it but doesn’t override performClick (kotlin)

問題 以下のようにある ImageView のインスタンスに対して、setOnTouchListener を実装して画像に対するタッチイベントを実装したところ、動作はするのですが、”View has onTouchListner called on it but doesn’t override performClick” の警告がIDE上で表…