ボタンを動的に作成しています。最初にXMLを使用してスタイルを設定し、以下のXMLをプログラム化しようとしています。
<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>
これは私が今のところ持っているものです。ドローアブル以外は何でもできます。
linear = (LinearLayout) findViewById(R.id.LinearView);
Button button = new Button(this);
button.setText("Button");
button.setOnClickListener(listener);
button.setLayoutParams(
new LayoutParams(
android.view.ViewGroup.LayoutParams.FILL_PARENT,
android.view.ViewGroup.LayoutParams.WRAP_CONTENT
)
);
linear.addView(button);
drawableLeft
。読み取り権限のないフォルダをクリックしたときに「禁止アイコン」を設定するための提案をここで試しましたが、機能します。ただし、フォルダーを変更してアダプターを再ロードすると、禁止されたアイコンが保持されます(つまり、drawableLeft
再描画されません)。ループを行わずににnotifyDataSetChanged
も申請する方法を知っdrawableLeft
ていますか?ありがとう!