У меня есть EditText
и кнопка, и я должен уменьшить ее высоту.Я пытаюсь с android:height="10px"
, но это не работает.Кстати android:width="180px"
работает нормально, тогда я не знаю, почему я не могу отрегулировать высоту.
Вот код:
<EditText
android:id="@+id/Movile"
android:layout_alignBaseline="@+id/MovileLabel"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="180px"
android:height="10px"/>
<Button
android:id="@+id/inviteButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/invite"
android:width="100px"
android:height="5px"
android:layout_marginLeft="40dip"/>