Skip to content

Instantly share code, notes, and snippets.

curl -X POST -H "Content-Type: application/json" -d '{
"persistent_menu":[
{
"locale":"default",
"composer_input_disabled":false,
"call_to_actions":[
{
"type":"postback",
"title":"Sample action",
"payload": "random payload, lel"
@shnhrrsn
shnhrrsn / GetTextHeight.java
Created March 1, 2012 15:51
Get the height of a block of text constrained to a max width.
public static int getTextHeight(String text, int maxWidth, float textSize, Typeface typeface) {
TextPaint paint = new TextPaint(Paint.ANTI_ALIAS_FLAG | Paint.SUBPIXEL_TEXT_FLAG);
paint.setTextSize(textSize);
paint.setTypeface(typeface);
int lineCount = 0;
int index = 0;
int length = text.length();