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
| /** | |
| * @author Simone Bellotti | |
| */ | |
| public class SuggestionSearchView extends LinearLayout { | |
| private static final String TAG = "SuggestionSearchView"; | |
| private static final double COS_45 = Math.cos(Math.toRadians(45)); | |
| private static final boolean DEFAULT_ENABLED_BACK = true; | |
| private static final boolean DEFAULT_WAIT_KEYBOARD_FOR_COLLAPSE = true; |
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 describing a SingleLineLinearLayout | |
| */ | |
| open class SingleLineLinearLayout @JvmOverloads constructor( | |
| context: Context, | |
| attrs: AttributeSet? = null, | |
| defStyleAttr: Int = 0 | |
| ) : LinearLayout(context, attrs, defStyleAttr) { | |
| var isChildRemoving = false |
OlderNewer