Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのようなスタイルを設定できます
ImageView android:id="@+id/blah" style="@style/mystyle" />
しかし、実行時にビューのスタイルを設定する方法はありますか? お気に入り
ImageView iv = (ImageView)findViewById(...); iv.setStyle(R.style.myotherstyle);
setStyle()ビューが初期化された後はスタイルを変更できないため、メソッドはありませ ん。
setStyle()
これを確認してください: View.setStyle() メソッドはどこにありますか?
いいえ、残念ながら実行時にスタイルを変更する方法はありません。最善の策は、実行時に一度に1つずつ個々の属性(パディング/マージン/幅など)を設定することです。