Each app has a theme that defines the default look-and-feel of the standard views you use. The theme is specified in the app’s AndroidManifest.xml file. You can customize aspects of an app’s theme, such those that define an app’s color scheme, by defining style resources in the file located in the app’s res/values folder.

a. themes.xml
b. styles.xml
c. colors.xml
d. None of the above.

b. styles.xml

Computer Science & Information Technology

You might also like to view...

To create a new database in Access, you must import an Excel spreadsheet into Access or link it to a RDBMS

Indicate whether the statement is true or false

Computer Science & Information Technology

Consider the following statements:  struct rectangleData{     double length;  double width;  double area;  double perimeter;};rectangleData bigRect;  Which of the following statements correctly initializes the component length of bigRect?

A. bigRect = {10}; B. bigRect.length = 10; C. length[0]= 10; D. bigRect[0]= 10

Computer Science & Information Technology