I am new to android development. Trying to make a tile service, but I have trouble to overriding the default long press action.
For that, I have a class called QSTileService which extends TileService, and I want my tile to do different things depending on if you press or long press it. what ive found so far with buttons is to implement the OnLongClickListener interface and fill in what you want to do in the onLongClick
method, but im not sure how to do this with quick setting tiles?
any help will be appreciated