コード例 #1
0
ファイル: EmotionView.java プロジェクト: NielsBillen/felicity
 /** Notifies the listeners when an emoticon is double tapped. */
 public void notifyDoubleTapped() {
   for (EmotionSelectionListener listener : listeners) listener.onEmotionDoubleTapped(emoticon);
 }
コード例 #2
0
ファイル: EmotionView.java プロジェクト: NielsBillen/felicity
 /** Notifies the listeners when an emoticon is deselected. */
 public void notifyDeSelection() {
   for (EmotionSelectionListener listener : listeners) listener.onEmotionDeselected(emoticon);
 }