This is my Edittext layout
<EditText
android:id="@+id/txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:gravity="center"
android:inputType="text|textFilter|textNoSuggestions"
android:padding="0dp"
android:singleLine="true"
android:textSize="15dp" android:text="S"
android:visibility="visible" >
</EditText>
If I try to put textSize="30dp", for example, the edittext is not resized and the letter is trouncated. Where is the problem?