私のコード:
TextView tv = new TextView(this);
final EditText newPositionName = new EditText(this);
newPositionName.setImeOptions(EditorInfo.IME_ACTION_SEARCH);
newPositionName.setBackgroundColor(Color.TRANSPARENT);
setImeOptions が機能しない理由がわかりません! setBackgroundColor は正常に動作します。setTextSize についても同様です。私は:
private Vector<TextView> ranking = new Vector<TextView>();
...
for(int i = 0; i < 5; i++){
ranking.add(new TextView(this));
ranking.lastElement().setTextSize(30);
}
ただし、文字サイズは変わりません。