Application

Report a typo

Find the correct button attributes.

a)

<Button
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:btn="@string/btn_name"
    android:sizeText="@dimen/btn_text_size"/>

b)

<Button
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:text="@string/btn_name"
    android:textSize="@dimen/btn_text_size"/>

c)

<Button
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:textButton="@string/btn_name"
    android:textSize="@dimen/btn_text_size"/>

d)

<Button
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:text="@string/btn_name"
    android:textDimen="@dimen/btn_text_size"/>

e)

<Button
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:textSize="@string/btn_name"
    android:text="@dimen/btn_text_size"/>
Select one option from the list
___

Create a free account to access the full topic