背景を設定するには:
RelativeLayout layout =(RelativeLayout)findViewById(R.id.background);
layout.setBackgroundResource(R.drawable.ready);
それを行う最善の方法はありますか?
RelativeLayout layout =(RelativeLayout)findViewById(R.id.background);
layout.setBackgroundResource(R.drawable.ready);
それを行う最善の方法はありますか?
回答:
layout.setBackgroundResource(R.drawable.ready);
正しい。
これを実現する別の方法は、以下を使用することです。
final int sdk = android.os.Build.VERSION.SDK_INT;
if(sdk < android.os.Build.VERSION_CODES.JELLY_BEAN) {
layout.setBackgroundDrawable(ContextCompat.getDrawable(context, R.drawable.ready) );
} else {
layout.setBackground(ContextCompat.getDrawable(context, R.drawable.ready));
}
しかし、大きな画像を読み込もうとしているために問題が発生すると思います。
これは、大きなビットマップをロードする方法の良いチュートリアルです。
更新:
APIレベル22で廃止予定だったgetDrawable(int)は、APIレベル22
getDrawable(int )
で廃止予定になりました。代わりに、サポートライブラリの次のコードを使用してください。
ContextCompat.getDrawable(context, R.drawable.ready)
ContextCompat.getDrawableのソースコードを参照すると、次のようになります。
/**
* Return a drawable object associated with a particular resource ID.
* <p>
* Starting in {@link android.os.Build.VERSION_CODES#LOLLIPOP}, the returned
* drawable will be styled for the specified Context's theme.
*
* @param id The desired resource identifier, as generated by the aapt tool.
* This integer encodes the package, type, and resource entry.
* The value 0 is an invalid identifier.
* @return Drawable An object that can be used to draw this resource.
*/
public static final Drawable getDrawable(Context context, int id) {
final int version = Build.VERSION.SDK_INT;
if (version >= 21) {
return ContextCompatApi21.getDrawable(context, id);
} else {
return context.getResources().getDrawable(id);
}
}
API 22以降、getDrawable(int, Theme)
getDrawable(int)ではなくメソッドを使用する必要があります。
更新:
サポートv4ライブラリを使用している場合は、すべてのバージョンで次の方法で十分です。
ContextCompat.getDrawable(context, R.drawable.ready)
アプリのbuild.gradleに以下を追加する必要があります
compile 'com.android.support:support-v4:23.0.0' # or any version above
または、以下のようなAPIでResourceCompatを使用します。
import android.support.v4.content.res.ResourcesCompat;
ResourcesCompat.getDrawable(getResources(), R.drawable.name_of_drawable, null);
if(buttonBackground.equals(R.drawable.myDrawable))
場所Drawable buttonBackground = myButton.getBackground();
を試しました: snag.gy/weYgA.jpg
myActivity.getTheme()
代わりにヌルパラメータの方法の最新バージョン、のために:myView.setBackground( getResources().getDrawable(R.drawable.my_background, activity.getTheme()));
AppCompatResources.getDrawable(this.getContext(), resId)
、代わりに使用できます。GoogleはAppCompat*
ウィジェット/ビューにすでに実装しています。例:android.support.v7.widget.AppCompatCheckBox
これを試して:
layout.setBackground(ContextCompat.getDrawable(context, R.drawable.ready));
API 16の場合<:
layout.setBackgroundDrawable(ContextCompat.getDrawable(context, R.drawable.ready));
getResources().getDrawable()
。正しいコードはlayout.setBackgroundResource(R.drawable.ready);
、使用されるOP とまったく同じです。ここでの問題は、ビットマップのサイズに起因します。
任意の画像の背景を設定することもできます:
View v;
Drawable image=(Drawable)getResources().getDrawable(R.drawable.img);
(ImageView)v.setBackground(image);
(.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN)
内部コードを実装する必要があります
私はminSdkVersion 16とtargetSdkVersion 23を
使用しています。
ContextCompat.getDrawable(context, R.drawable.drawable);
代わりに:
layout.setBackgroundResource(R.drawable.ready);
むしろ使用:
layout.setBackground(ContextCompat.getDrawable(this, R.drawable.ready));
getActivity()
アクティビティからの呼び出しの場合、フラグメントで使用されますthis
。
これをクラスの先頭(メソッドの前)に追加することにより、butterknifeを使用して描画可能リソースを変数にバインドします。
@Bind(R.id.some_layout)
RelativeLayout layout;
@BindDrawable(R.drawable.some_drawable)
Drawable background;
次に、いずれかのメソッド内に追加します
layout.setBackground(background);
それで十分です
if (android.os.Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN)
layout.setBackgroundDrawable(getResources().getDrawable(R.drawable.ready));
else if(android.os.Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP_MR1)
layout.setBackground(getResources().getDrawable(R.drawable.ready));
else
layout.setBackground(ContextCompat.getDrawable(this, R.drawable.ready));
してみてください ViewCompat.setBackground(yourView, drawableBackground)
setBackground(getContext().getResources().getDrawable(R.drawable.green_rounded_frame));
app / res / your_xml_layout_file .xml内
remoteViews.setInt(R.id.btn_start,"setBackgroundResource", R.drawable.ic_button_start);