- 浏览: 707420 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
葫芦瓢:
葫芦瓢 写道专注IT 写道请问楼主demo中为什么是Custo ...
Android Scroller简单用法 -
葫芦瓢:
专注IT 写道请问楼主demo中为什么是CustomView中 ...
Android Scroller简单用法 -
u011493452:
注册账号给楼主点赞!
Android Scroller简单用法 -
jiduoduo:
整理的不错!
Android文件存储 -
xiaofeng0817166:
http://deerchao.net/tutorials/r ...
Java正则表达式应用
在Android UI中,我们常常会使用EditText,当用户点击这个EditText时会触发软键盘,这个软键盘会把EditText以下的界面挡住,有时候我们希望用户看到完整的界面,就像下图这样:
原理很简单,将布局的最外层添加一个ScrollView,当用户点击EditText时,将ScrollView滚动到底,废话不说,直接上代码
AndroidMainfest.xml
在布局页面中,我们在最外层使用了ScrollView,由于软键盘的弹出,原有界面从新布局,使得用户可以滚动界面。
main.xml
下面是代码的逻辑部分,比较简单
原理很简单,将布局的最外层添加一个ScrollView,当用户点击EditText时,将ScrollView滚动到底,废话不说,直接上代码
AndroidMainfest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.ipjmc.demo.inputmethod" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" > <activity android:label="@string/app_name" android:name=".InputMethodActivity" <!--只有用户点击了编辑框才显示软键盘,并且会导致原有界面重新布局--> android:windowSoftInputMode="stateHidden|adjustResize" > <intent-filter > <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
在布局页面中,我们在最外层使用了ScrollView,由于软键盘的弹出,原有界面从新布局,使得用户可以滚动界面。
main.xml
<?xml version="1.0" encoding="utf-8"?> <ScrollView android:id="@+id/scroll" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:fillViewport="true" > <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:text="@string/hello" android:textColor="#000" android:layout_width="fill_parent" android:layout_height="300dip" android:background="#0000FF" /> <EditText android:id="@+id/edit" android:layout_width="match_parent" android:layout_height="wrap_content"/> <Button android:id="@+id/button" android:text="提交" android:layout_width="match_parent" android:layout_height="wrap_content"/> </LinearLayout> </ScrollView>
下面是代码的逻辑部分,比较简单
package com.ipjmc.demo.inputmethod; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.widget.Button; import android.widget.EditText; import android.widget.ScrollView; import android.util.Log; import android.view.View; public class InputMethodActivity extends Activity implements View.OnClickListener { private static final String TAG = "Scroll"; private EditText mEdit; private Button mButton; private ScrollView mScrollView; private Handler mHandler = new Handler(); /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); mScrollView = (ScrollView) findViewById(R.id.scroll); mEdit = (EditText) findViewById(R.id.edit); mButton = (Button) findViewById(R.id.button); mEdit.setOnClickListener(this); } @Override public void onClick(View v) { //这里必须要给一个延迟,如果不加延迟则没有效果。我现在还没想明白为什么 mHandler.postDelayed(new Runnable() { @Override public void run() { //将ScrollView滚动到底 mScrollView.fullScroll(View.FOCUS_DOWN); } }, 100); } }
发表评论
-
Android Notification的使用
2012-10-20 19:28 9777Android 4.1 (Jelly Bean ... -
短信拦截
2012-09-25 20:40 2091最近写一个应用(A),需要拦截短信分析。一般是 ... -
Android Scroller简单用法
2012-08-01 16:35 65889Android里Scroller类是为了实现Vi ... -
Android 使用WebView.loadData中文乱码解决办法
2012-07-19 15:09 9600博主在使用WebView的loadData方法时发 ... -
Android HttpClient基本使用方法
2012-07-05 14:15 107898这里只介绍如何使用HttpClient发起GET或者POST请 ... -
Android XML定义颜色
2012-06-09 13:15 0在res/colors.xml中添加如下代码: 定义C ... -
Activity和Task的设计思路和方法
2012-03-29 20:20 1256Activity和 Task是 Android ... -
显示PopupWindow
2012-03-16 10:04 16677PopupWindow可 ... -
存储文件的ContentProvider
2012-03-08 23:37 9412基于SQLite的ContentProvider ... -
Android文件存储
2012-03-08 22:34 19477Internal Storage内部存储空 ... -
Android 使用Notification
2012-03-07 10:26 2244用惯了Android的人在刚拿到iPhone的 ... -
onInterceptTouchEvent和onTouchEvent调用时序
2012-02-11 23:42 1071onInterceptTouchEvent() ... -
使用ConnectivityManager监听网络状态变化
2011-12-24 11:16 29856mIntenFilter = new IntentFilte ... -
Window Manager
2012-03-22 23:51 1556Android的窗口机制基于WindowManager,可以通 ... -
CommonsWare Android Components
2011-12-17 16:10 1765CommonsWare Android Com ... -
Android中图片缩放
2011-12-17 00:09 1931下载的图片如果过大,可能导致内存溢出。需要做压 ... -
Android 使用Parcelable序列化对象
2011-12-16 23:43 36603Android序列化对象主要有两种方法,实现S ... -
PreferenceActivity
2011-12-12 22:54 922传送门:http://www.cnblogs.com/wser ... -
View.scrollBy()与View.scrollTo()的使用
2011-12-12 22:40 19611scrollTo()和scrollBy()都是V ... -
Android 新浪微博授权
2011-12-11 17:13 7512OAuth方式 通过网页方式授权 实现方法,三个步骤 1.使用 ...
相关推荐
Android 软键盘调整界面问题解决方案 Android 软键盘的问题是 Android 开发中常见的问题之一。软键盘的出现可能会导致界面被顶起或被遮挡,从而影响用户体验。解决这个问题需要了解软键盘的属性和调整方法。 首先...
Android仿微信聊天界面,解决软键盘抬升的小Demo。同时也有包含两张聊天气泡图。对应介绍博客[](https://blog.csdn.net/Allen_Adolph/article/details/106467315)。大家可以看看。谢谢支持!
然而,这种行为有时会导致一些界面布局问题,尤其是当应用处于全屏模式时,软键盘的出现可能会将下方的布局内容推至屏幕之外,使得用户无法看到或接触到这些内容。这就是我们常说的“软键盘把布局顶上去问题”。这个...
优化登录界面的布局设计,例如使用`LinearLayout`的垂直方向,将登录按钮放置在输入框上方,或者使用`ScrollView`包含整个布局,使得用户可以滚动查看被遮挡的部分。 5. 使用BottomSheetBehavior: 将登录表单...
在Android开发中,当用户在应用中输入时,软键盘的弹出可能会遮挡底部的控件,导致用户体验下降。为了改善这种情况,开发者通常需要实现一个功能,使得底部的视图(如工具栏、按钮等)能够随着软键盘的弹出而上移。...
而内部的`LinearLayout`使用`wrap_content`高度,这样当软键盘弹出时,整个布局会根据需要进行自适应调整。 #### 总结 通过上述两种方法,可以有效地解决软键盘遮挡EditText的问题。其中,第一种方法适用于大多数...
总结而言,监听Android软键盘的弹出和隐藏状态,是为了优化用户界面布局和提升用户体验。开发者需要采取合适的技术方案来处理这一需求,包括自定义View监听布局变化或者通过计算布局元素偏移量来间接监听软键盘状态...
在Android应用开发中,经常会遇到一个问题,即当用户在输入框中点击触发软键盘弹出时,原本在屏幕下方的布局会被键盘顶上去,导致部分界面内容无法查看。为了解决这个问题,Android提供了`windowSoftInputMode`属性...
### 解决安卓嵌套H5软键盘遮挡问题及导航栏遮挡问题 在移动应用开发过程中,尤其是在处理H5页面时,经常会遇到一个让人头疼的问题:软键盘弹出后遮挡了输入框或者页面被华为、小米等手机底部的导航栏遮挡。这个问题...
本文将详细讲解如何控制Android软键盘弹出时的界面行为,包括三种不同的模式:压缩模式、平移模式和自动模式,并提供如何在`AndroidManifest.xml`中进行配置的技巧。 首先,我们需要理解`windowSoftInputMode`属性...
4. **Android特定的解决方案**:对于Android设备,可以使用Webview的`android:windowSoftInputMode="adjustResize"`属性,这将使得Webview在软键盘弹出时自动调整大小,从而让输入框保持可见。 5. **利用第三方库**...
由于我们希望整个界面随着软键盘的弹出而上移,所以登录界面通常应该使用可滚动的布局,例如ScrollView或NestedScrollView。这些布局允许内容随手指滑动而滚动,同时在软键盘弹出时会自动调整内容的位置。 ```xml ...
Android 实现输入法弹出时把布局顶上去和登录按钮顶上去的解决方法主要介绍了在 Android 中实现输入法弹出时把布局顶上去和登录按钮顶上去的解决方法,这个解决方法可以解决在输入密码时输入法软键盘把登录按钮遮挡...
在Android开发中,软键盘的交互问题经常会给用户体验带来困扰,比如输入框被键盘遮挡、顶部标题栏被推上等情况。"KeyBoardPatch"是一个专门针对这些问题的工具类,旨在提供解决方案。在这个项目中,核心文件是`...
在Android开发中,用户界面(UI)的交互体验是至关重要的,特别是在涉及软键盘弹出的场景。当用户在登录界面或其他含有输入框的界面中点击输入时,软键盘的出现可能会遮挡底部的按钮或内容,导致用户体验下降。针对...
在Android开发中,有时会遇到一个常见的问题,即当用户在EditText输入时,软键盘弹出后会遮挡屏幕底部的EditText。这个问题尤其在应用采用了透明栏效果后更为明显。以下是一些关于如何处理Android EditText被软键盘...
在Android应用开发中,经常会遇到一个问题,即当用户在界面中触发软键盘输入时,底部菜单(如导航栏)会被输入法遮挡。这给用户体验带来了不便,因为底部菜单通常是重要的操作区域。本文将探讨几种解决这个问题的...
然而,在涉及到输入法交互时,有时会出现一些问题,比如在本例中提到的“Android PopupWindow被输入法弹上去之后无法恢复原位”的情况。这个问题通常发生在用户点击EditText时,输入法弹出,导致PopupWindow位置改变...