`
liyinfeng56
  • 浏览: 94109 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

使用scrollview不让键盘覆盖编辑框

阅读更多
  我在Android一个界面有一个编辑的文本框,当文本框获得焦点的时候就会弹出一个模拟键盘,而这个键盘把文本框给盖住了!!!使文本框编辑不方便,也看不到编辑的效果,有什么方法不让模拟键盘遮住文本编辑框了吗,到网上问问各位大侠和查了些资料具体的解决方法如下,主要使用的是:ScrollView

xml文件:
<?xml version="1.0" encoding="utf-8"?>   
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="@drawable/mainbg"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:orientation="vertical"
    android:paddingTop="100dip"
    android:paddingLeft="20dip">  
   
   
<ScrollView id="@+id/scrollview" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:scrollbars="vertical">
    <LinearLayout  
        id="@+id/layout0" 
        android:orientation="vertical" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content">
               <LinearLayout  
        android:id="@+id/layout" 
        android:orientation="horizontal" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content">
        <TextView
android:id="@+id/title"
android:layout_width="135px"
android:layout_height="27px"
android:text="发送短信内容"
>
   </TextView>
        </LinearLayout>
     <LinearLayout  
        android:id="@+id/layout1" 
        android:orientation="horizontal" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content">
              <EditText
android:id="@+id/phonnum"
android:layout_width="190px"
android:layout_height="43px"
android:layout_x="22px"
android:layout_y="128px"
android:phoneNumber="true"
>
</EditText>
<TextView
android:id="@+id/widget27"
android:layout_width="13px"
android:layout_height="27px"
android:layout_x="100px"
android:layout_y="92px"
>
   </TextView>
<Button
android:id="@+id/btnlist"
android:layout_width="69px"
android:layout_height="29px"
android:background="@drawable/liman"
android:layout_x="272px"
android:layout_y="132px"
android:paddingRight="5dip"
>
   </Button>
    </LinearLayout>    
    <LinearLayout  
        id="@+id/layout2" 
        android:orientation="vertical" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:paddingBottom="3px"   
                android:paddingRight="10px">
        <EditText
        android:id="@+id/editorcontent"
        android:layout_width="280px"
android:layout_height="250px"
android:layout_x="20px"
    android:paddingBottom="3px"   
                        android:paddingRight="10px"> 
       </EditText>
    </LinearLayout>  
     <LinearLayout  
        id="@+id/layout3" 
        android:orientation="horizontal" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content">
       <Button
android:id="@+id/btnsend"
android:background="@drawable/send"
android:layout_width="69px"
android:layout_height="29px"
android:layout_x="150px"
android:layout_y="408px"
>
</Button>
<TextView
android:id="@+id/widget27"
android:layout_width="135px"
android:layout_height="27px"
android:layout_x="100px"
android:layout_y="92px"
>
   </TextView>
<Button
android:id="@+id/btnback"
android:layout_width="69px"
android:layout_height="29px"
android:layout_x="270px"
android:layout_y="408px"
android:background="@drawable/backtrack"
>
</Button>
    </LinearLayout> 
    </LinearLayout> 
</ScrollView>  
</LinearLayout>


分享到:
评论
1 楼 fanth 2009-12-28  
我也有类似的问题,能够贴一下JAVACODE?多谢!

相关推荐

    登录按钮不被弹出软键盘覆盖

    "登录按钮不被弹出软键盘覆盖"这个问题是一个常见的用户体验问题,尤其是在Android平台上。当用户在登录页面填写用户名和密码时,如果点击输入框弹出软键盘,登录按钮可能会被键盘遮挡,导致用户无法直接看到或点击...

    ScrollView

    8. **disableBounce**:如果不想让用户在达到内容边缘时有弹性效果,可以使用 `disableBounce` 属性设置为 `true`。 9. **overscrollBehavior**:这个属性在 Android 上可用,用于控制 ScrollView 在内容超过边界时...

    Android Scrollview上滑停靠—悬浮框停靠在标题栏下方(防微博详情页)

    在这个特定的案例中,"Android Scrollview上滑停靠—悬浮框停靠在标题栏下方(防微博详情页)" 是一个功能实现,它模拟了类似微博详情页的效果,即当用户在ScrollView中向上滑动时,一个悬浮框(通常是包含操作或...

    Android平台下使用ScrollView滚动效果代码

    为了优化性能,需要注意避免在ScrollView中放置过多的视图或大图片,因为这可能导致滚动不流畅。如果必须这样做,可以考虑使用ListView、RecyclerView或者分页加载内容。 在提供的`ScrollViewDemo`项目中,你可以...

    ScrollView与自定义滑块结合使用的Demo

    这可以通过监听器(Listener)来实现,例如创建一个接口,让滑块和ScrollView都实现这个接口,滑块在滑动时调用接口方法通知ScrollView,反之亦然。这样,两者之间的交互就得以实现。 在实际代码实现中,自定义滑块...

    经典ScrollView嵌套ListView和ScrollView

    很多朋友因项目需求问题需要在ScrollView中嵌套使用ListView或ScrollView 但是彼此的滑动事件会发生冲突,网上大多数都是计算ListView的高度来解决这个问题,但个人亲手尝试 结果ListView的Item要是过多的话ListView...

    ScrollView嵌套GridView不能滚动的问题解决方案

    在上面的布局文件中,我们使用了自定义的 MyGridView 控件来代替原来的 GridView 控件,从而解决了 ScrollView 嵌套 GridView 不能滚动的问题。 解决 ScrollView 嵌套 GridView 不能滚动的问题的关键是重写 ...

    粗略使用cocostudio制作的scrollview

    在本文中,我们将深入探讨如何使用Cocostudio制作并集成ScrollView到cocos2d-x项目中。Cocostudio是一款强大的2D游戏资源编辑工具,它提供了UI设计、动画编辑等功能,使得开发者能够更方便地创建游戏界面。...

    cocos2d-x中ScrollView的使用

    在cocos2d-x游戏开发框架中,ScrollView是一个非常重要的组件,它允许用户在有限的显示区域内滚动查看超出范围的内容。...正确理解和使用ScrollView,可以提升用户体验,让游戏或应用变得更加易用。

    ScrollView配合RecyclerView使用

    在Android开发中,ScrollView和RecyclerView是两种常用的布局控件,它们各自有其特定的使用场景和功能。在某些情况下,我们需要将两者结合使用,以实现更复杂或自定义的滚动效果。下面我们将深入探讨如何在Android...

    新版闪记ScrollView垂直滑动框架

    在实际开发中,使用这个框架可能会涉及以下几个步骤: 1. 引入框架库:将框架库添加到项目依赖中,通常是通过Gradle配置。 2. 创建ScrollView实例:在布局文件或代码中创建新版闪记ScrollView,并替换原有的...

    ScrollView不冲突嵌套ListView

    然而,直接在ScrollView内嵌套ListView时,可能会出现一些问题,比如滚动冲突,导致用户体验不佳。本篇文章将深入探讨如何解决ScrollView与ListView的嵌套问题,并通过自定义ListView来实现正常显示每个Item,确保...

    Android双向滚动ScrollView

    在Android开发中,ScrollView是常用的布局控件,用于实现单向滚动,但有时我们需要实现一个可以双向滚动的视图,这就涉及到了自定义组件的知识。本文将深入解析如何实现一个支持垂直和水平双向滚动的ScrollView。 ...

    scrollView

    - 避免在ScrollView内使用复杂的布局,尤其是嵌套布局,尽可能使用扁平化的布局结构。 - 使用`ViewStub`来延迟加载不立即需要的视图。 - 使用Glide或Picasso等库进行图片加载和缓存,减少内存消耗。 6. **嵌套...

    cocos2d-x ScrollView使用

    本篇将详细讲解cocos2d-x中ScrollView的使用方法。 1. **ScrollView简介** ScrollView是一个可滚动的视图容器,它可以包含一个或多个子节点,并且这些子节点可以在水平或垂直方向上滚动。开发者可以通过ScrollView...

    Android解决ListView嵌套ScrollView不能刷新

    总的来说,解决Android中ListView嵌套ScrollView不能刷新的问题需要理解Android的滚动机制,合理选择或定制组件,以及优化布局设计。通过实践和学习,开发者可以克服这个挑战,实现流畅的用户界面。

    ScrollView内部嵌套EditText

    1. **禁用ScrollView的滚动**:当EditText获取焦点时,可以通过监听FocusChange事件,暂时禁用ScrollView的滚动,让EditText能够正常显示输入法。 ```java editText.setOnFocusChangeListener(new View....

    ios scrollview使用总结

    4. `alwaysBounceHorizontal/Vertical`:这两个属性分别控制ScrollView是否在内容不足以完全填充视图时,仍然允许水平或垂直方向的弹性滚动。 5. `bounces`:当内容到达边界时,设置该属性为`true`可以让ScrollView...

    ScrollView嵌套RecycleView解决高度不适配

    然而,当ScrollView嵌套RecyclerView时,可能会遇到一些常见问题,如RecycleView的高度不适配导致无法正确显示,或是滑动体验不佳。这些问题的出现主要是由于两者的滚动机制冲突以及默认布局管理器的设置。 首先,...

    scrollview+ textfield demo

    总的来说,"scrollview+ textfield demo"是一个实用的示例,它演示了如何在iOS应用中有效地处理ScrollView、TextField和TextView的交互,确保在键盘弹出时,用户的输入体验不受影响。开发者可以通过研究这个项目,...

Global site tag (gtag.js) - Google Analytics