Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Well I know that this can be done in xml this way

android:background="@android:drawable/editbox_dropdown_dark_frame"

this line above is from my mind so it can have some errors, but basically is that way. Now how can I do the same thing but programatically?

Thanks

share|improve this question

2 Answers

up vote 2 down vote accepted

You can do it like this (from a View subclass):

setBackgroundResource(android.R.drawable.editbox_dropdown_dark_frame);

If you have a reference to the view (say, from findViewById), you can do the same thing:

View v = . . .;
v.setBackgroundResource(android.R.drawable.editbox_dropdown_dark_frame);

If you like, you can retrieve the Drawable itself directly:

Drawable d = getResources().getDrawable(
    android.R.drawable.editbox_dropdown_dark_frame);
share|improve this answer
<TextView
android:id="@+id/background_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

TextView toChange = (TextView) this.findViewById(R.id.background_tv);
toChange.setBackgroundResource(android.R.drawable.editbox_dropdown_dark_frame);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.