Dave
Dave

Reputation: 4328

what does android.R.layout do? An overview

Im trying to get an overview of what android.R.layout does in an android project.

From the spinner tut at http://developer.android.com/resources/samples/Spinner/index.html

 this.mAdapter = ArrayAdapter.createFromResource(this, R.array.Planets,
                android.R.layout.simple_spinner_dropdown_item);

I can see a private member

public static final int simple_spinner_dropdown_item

But what is this?

Upvotes: 0

Views: 427

Answers (1)

Falmarri
Falmarri

Reputation: 48567

It's a list of layout resource IDs in the android package

Upvotes: 1

Related Questions