Skip to content

Commit

Permalink
Merge pull request #537 from harshitagupta30/Issue#496-edittext-overf…
Browse files Browse the repository at this point in the history
…lowing

fix: edittext overflow in dialog box
  • Loading branch information
therajanmaurya authored Mar 3, 2017
2 parents fa6037a + 921ec0a commit d589d43
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:id="@+id/et_document_name" />
android:id="@+id/et_document_name"
android:maxLines="3"
android:scrollbars="vertical"/>
</TableRow>

<TableRow
Expand All @@ -63,7 +65,9 @@
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:id="@+id/et_document_description" />
android:id="@+id/et_document_description"
android:maxLines="3"
android:scrollbars="vertical"/>
</TableRow>

</TableLayout>
Expand Down

0 comments on commit d589d43

Please sign in to comment.