查看xml文件中的代码,其中我使用了两个textview和一个按钮... 问题是,当我点击文本视图时,默认键盘出现,第二个文本视图的一半和按钮隐藏...然后你必须手动关闭键盘然后你将能够点击发送按钮...
我的问题是,当键盘显示整个视图向上滑动或缩小以便按钮可见时,我该如何执行....
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<EditText
android:id="@+id/etRecieverNum"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textNoSuggestions"
>
</EditText>
<EditText
android:id="@+id/etMessageToBeSent"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="0.82"
android:gravity="top|left"
android:inputType="textNoSuggestions"
/>
<Button
android:id="@+id/bSend"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Send" />
</LinearLayout>
答案 0 :(得分:1)
你可以把
<activity
android:name="yourActivity"
android:windowSoftInputMode="adjustPan"/>
在你的清单中......或者把
adjustResize instead of adjustPan
<强> adjustResize 强> 活动的主窗口始终调整大小,以便为屏幕上的软键盘腾出空间。
<强> adjustPan 强> 活动的主窗口未调整大小以便为软键盘腾出空间。相反,窗口的内容会自动平移,以便键盘不会遮挡当前焦点,用户可以随时看到他们正在键入的内容。这通常不如调整大小,因为用户可能需要关闭软键盘才能进入并与窗口的模糊部分进行交互。
答案 1 :(得分:1)
在Manifest文件中,在活动
下提供类似的内容<activity android:windowSoftInputMode="adjustResize"/>
您还可以参考此link以获取有关windowSoftInputMode
的更多详细信息