1

使っていたので

EditText et=new EditText(this);
locationEditText.setBackgroundDrawable(et.getBackground());

しかし、API 16で追加されたためsetBackgroundDrawable(Drwable)使用できないため、Api 16では廃止され、それより前のバージョンを使用していますsetBackground(Drwable)

だから私に残された唯一の2つの機能

setBackgroundColor(int color) および_setBackgroundResource(int resid)

EditTextでは、Holo Light Theme でデフォルトに設定する方法は?

4

3 に答える 3