Solved

Inside a RelativeLayout Element, Write the Code That Asks an EditText

Question 100

Essay

Inside a RelativeLayout element, write the code that asks an EditText whose id is age and that is positioned to the right of the View whose id is name; its right edge is lined up with its parent View.
< EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
< !-- Your code goes here -->
android:inputType="numberDecimal" />

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions