Android: Stop Edittext From Going Outside Of Tablerow
So i have a tablelayout in android with some table rows. In each row i have a textview and an edittext. My setup looks like:
Solution 1:
just you set in TextView and EditText Views
android:layout_weight="1"
Solution 2:
Perhaps you can force the width to stay in the table using the formatter. You can read more about it here http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Formatter.html
Post a Comment for "Android: Stop Edittext From Going Outside Of Tablerow"