100k views
5 votes
If the Hardware Keyboard option is not enabled for an emulator, which property sets the text on the widget to "Continue"?

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

1 Answer

2 votes

Final answer:

For an Android application, the property to set the text on a widget to "Continue" is 'android:text="Continue"', typically used within the app's layout XML. The correct option is (A)

Step-by-step explanation:

In the context of configuring or building an Android application using an emulator, if the hardware keyboard option is not enabled, the property that sets the text on a widget to "Continue" is android:text="Continue". This attribute is used in the app's layout XML file to set the text that will be displayed on user interface elements, such as Buttons or TextViews. The correct use of this attribute is important for app development in Android Studio to ensure that the user interface displays the intended text labels on various interactive elements.

User Ashwel
by
6.9k points