标签:
解决方案:找一个EditText的父级控件把EditText默认的行为截断了!设置
android:focusable="true"示例:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
标签:
原文地址:http://www.cnblogs.com/yishujun/p/5392608.html