When using fill_parent, maxWidth has no effect.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxWidth="50dip"/>
</LinearLayout>
</LinearLayout>
The attribute
maxWidthhas no effect on a width ofmatch_parent(or the deprecatedfill_parent), they are mutually exclusive. You need to usewrap_content.Also any layout that only has one child can probably be removed, for instance you can simplify you current layout to: