My textView keeps resizing no matter what I try.
I've made simple calculator but my last issue is that when I type long numbers, the text boxes for input and result change their size and become higher and higher and entire layout below moves out of screen
http://i.imgur.com/rgfuDLA.png (image at the bottom)
This my my layout:
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimaryDark">
My textView keeps resizing no matter what I try. I've made simple calculator but my last issue is that when I type long numbers, the text boxes for input and result change their size and become higher and higher and entire layout below moves out of screen http://i.imgur.com/rgfuDLA.png (image at the bottom)
This my my layout: <?xml version="1.0" encoding="UTF-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/colorPrimaryDark">
`