EditTextの高さに基づいて何かをしたい。EditTextの高さを知るにはどうすればよいですか?私のコードは以下のようなものです。
<EditText
android:id="@+id/edit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
/>
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout);
EditText edit = (EditText) findViewById(R.id.edit);
edit.setTextSize(20);
edit.setText("Hello, world");
int height = edit.getHeight(); // this returns 0
}