I am trying to implement a popup dialog which resembles the QuickAction Dialog. The difference is I would like to have a vertically scrollable textview within the pop up instead of all of these actions.
This here
is EXACTLY what I want, but this question pertains to C#.
I have found tons of examples dealing with Maps but nothing without maps. I am trying to have the user press a button, and have the speech bubble appear from that button.
ctInfoButton = new ImageButton( this );
ctInfoButton.setOnClickListener( new OnClickListener() {
public void onClick( View v ) {
// Pop up code initialized here.
}
});