14
Como definir programaticamente drawableLeft no botão Android?
Estou criando botões dinamicamente. Eu os estilizei usando XML primeiro, e estou tentando pegar o XML abaixo e torná-lo programático. <Button android:id="@+id/buttonIdDoesntMatter" android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="buttonName" android:drawableLeft="@drawable/imageWillChange" android:onClick="listener" android:layout_width="fill_parent"> </Button> É isso que eu tenho até agora. Eu posso fazer tudo, menos o drawable. linear = (LinearLayout) findViewById(R.id.LinearView); Button button = …