Android Question text are cutted down in edittext and spinner

JUAN CARLOSORDOÑEZ

Member
Licensed User
Longtime User
Please help me with this:
The texts in textedit and spinner are cut me down since I made a modification to the editor editor:

This is my manifest editor:


AddManifestText(
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="21"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.

SetApplicationAttribute(android:theme, "@style/MyAppTheme")

CreateResource(values, theme.xml,
<resources>
<style name="MyAppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">#F44336</item>
<item name="colorPrimaryDark">#D32F2F</item>
<item name="colorAccent">#9E9E9E</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
</style>
</resources>
)


thanks!!
 

Attachments

  • consulta.png
    consulta.png
    57.7 KB · Views: 219

JUAN CARLOSORDOÑEZ

Member
Licensed User
Longtime User
It looks like you need to increase the spinners heights in the designer.
That was the first thing I thought but no. It's not that. No matter what value you put on the height, the same thing happens. It's in the spinners and in the textedit
 

Attachments

  • consulta2.jpeg
    consulta2.jpeg
    29.5 KB · Views: 218
Upvote 0
Top