Aby ustawić tło:
RelativeLayout layout =(RelativeLayout)findViewById(R.id.background);
layout.setBackgroundResource(R.drawable.ready);
Czy to najlepszy sposób, aby to zrobić?
RelativeLayout layout =(RelativeLayout)findViewById(R.id.background);
layout.setBackgroundResource(R.drawable.ready);
Czy to najlepszy sposób, aby to zrobić?
Odpowiedzi:
layout.setBackgroundResource(R.drawable.ready);
jest poprawne.
Innym sposobem na osiągnięcie tego jest użycie:
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));
}
Ale myślę, że problem występuje, ponieważ próbujesz załadować duże obrazy.
Oto dobry samouczek, jak ładować duże mapy bitowe.
AKTUALIZACJA:
getDrawable (int) przestarzałe na poziomie API 22
getDrawable(int )
jest teraz przestarzałe na poziomie API 22. Zamiast tego należy użyć następującego kodu z biblioteki wsparcia:
ContextCompat.getDrawable(context, R.drawable.ready)
Jeśli odwołujesz się do kodu źródłowego ContextCompat.getDrawable , daje ci to coś takiego:
/**
* 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);
}
}
Więcej informacji na temat ContextCompat
Począwszy od API 22, powinieneś użyć getDrawable(int, Theme)
metody zamiast getDrawable (int).
AKTUALIZACJA:
Jeśli korzystasz z biblioteki obsługi v4, dla wszystkich wersji wystarczą następujące informacje.
ContextCompat.getDrawable(context, R.drawable.ready)
Musisz dodać następujące elementy w aplikacji build.gradle
compile 'com.android.support:support-v4:23.0.0' # or any version above
Lub za pomocą ResourceCompat w dowolnym interfejsie API, takim jak poniżej:
import android.support.v4.content.res.ResourcesCompat;
ResourcesCompat.getDrawable(getResources(), R.drawable.name_of_drawable, null);
if(buttonBackground.equals(R.drawable.myDrawable))
skąd Drawable buttonBackground = myButton.getBackground();
wziąć ten błąd: snag.gy/weYgA.jpg
myActivity.getTheme()
najnowszej wersji metody, zamiast parametru null:myView.setBackground( getResources().getDrawable(R.drawable.my_background, activity.getTheme()));
AppCompatResources.getDrawable(this.getContext(), resId)
zamiast tego, Google już zaimplementował to w AppCompat*
widżecie / widoku, np .:android.support.v7.widget.AppCompatCheckBox
Spróbuj tego:
layout.setBackground(ContextCompat.getDrawable(context, R.drawable.ready));
i dla API 16 <:
layout.setBackgroundDrawable(ContextCompat.getDrawable(context, R.drawable.ready));
getResources().getDrawable()
. Prawidłowy kod jest layout.setBackgroundResource(R.drawable.ready);
taki sam, jak użyty OP. Problem pochodzi z rozmiaru mapy bitowej.
RelativeLayout relativeLayout; //declare this globally
teraz wewnątrz dowolnej funkcji, takiej jak onCreate, onResume
relativeLayout = new RelativeLayout(this);
relativeLayout.setBackgroundResource(R.drawable.view); //or whatever your image is
setContentView(relativeLayout); //you might be forgetting this
Możesz także ustawić tło dowolnego obrazu:
View v;
Drawable image=(Drawable)getResources().getDrawable(R.drawable.img);
(ImageView)v.setBackground(image);
(.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN)
wewnętrzny kod
Korzystam z minSdkVersion 16 i targetSdkVersion 23.
Poniższe działa dla mnie, używa
ContextCompat.getDrawable(context, R.drawable.drawable);
Zamiast używać:
layout.setBackgroundResource(R.drawable.ready);
Raczej użyj:
layout.setBackground(ContextCompat.getDrawable(this, R.drawable.ready));
getActivity()
jest używany we fragmencie, jeśli wywołuje się z użycia działania this
.
Jeśli twoje tła znajdują się teraz w folderze do rysowania, spróbuj przenieść obrazy z folderu Drawable do folderu Drawable-Nodpi w swoim projekcie. To działało dla mnie, wydaje się, że w innym przypadku obrazy są przeskalowywane przez nich samych ..
Użyj Butterknife, aby powiązać zasób do rysowania ze zmienną, dodając go na szczyt klasy (przed dowolnymi metodami).
@Bind(R.id.some_layout)
RelativeLayout layout;
@BindDrawable(R.drawable.some_drawable)
Drawable background;
następnie dodaj jedną z metod
layout.setBackground(background);
To wszystko czego potrzebujesz
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));
Spróbuj ViewCompat.setBackground(yourView, drawableBackground)
Spróbuj tego.
int res = getResources().getIdentifier("you_image", "drawable", "com.my.package");
preview = (ImageView) findViewById(R.id.preview);
preview.setBackgroundResource(res);
setBackground(getContext().getResources().getDrawable(R.drawable.green_rounded_frame));
Wewnątrz aplikacji / res / your_xml_layout_file .xml
remoteViews.setInt(R.id.btn_start,"setBackgroundResource", R.drawable.ic_button_start);