我有一个edittext,它在打开时成功定位在软件键盘上方。问题是当键盘打开时,键盘可见,约2秒后编辑文本。如何使用键盘打开动画显示在页面底部直到键盘打开的edittext?
答案 0 :(得分:0)
在Edittext的父容器中使用ScrollView
sb.AppendFormat("<td style=\"border:solid 1px black\">{0}</td>", cellValue);
并将其添加到AndroidManifest中的活动
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
</ScrollView>