231k views
3 votes
Given the following code in the file, which of the following properties sets the text on the widget to "Continue"?

Continue

A: android:text="Continue"
B: android:label="Continue"
C: android:value="Continue"
D: android:content="Continue"

User Athlan
by
7.6k points

1 Answer

1 vote

Final answer:

The text on an Android widget is set using the 'android:text' property, so the correct option is A: android:text="Continue".

Step-by-step explanation:

The property that sets the text on the widget to "Continue" in the given code for an Android application is android:text="Continue". This XML attribute is used within an Android layout file to specify the text that will appear on a Button, TextView, or other text-displaying widgets. The correct option is A: android:text="Continue".

User Chebad
by
7.6k points