继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

使用SystemBarTint设置系统状态栏的问题

红颜莎娜
关注TA
已关注
手记 125
粉丝 17
获赞 65

使用布局 RelativeLayout 包含listView和EditText, 其中EditText在最底部, 如下,

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    tools:context="${relativePackage}.${activityClass}" >

    <ListView

        android:id="@+id/listView1"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:layout_alignParentLeft="true"

        android:layout_alignParentTop="true"

        android:entries="@array/listen" 

        android:fitsSystemWindows="true"

        android:layout_above="@+id/editText2">

    </ListView>

<EditText

        android:id="@+id/editText2"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_alignParentLeft="true"

        android:layout_alignParentRight="true"

        android:layout_above="@+id/editText1"

        android:ems="10" >

    </EditText>

    <EditText

        android:id="@+id/editText1"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_alignParentLeft="true"

        android:layout_alignParentRight="true"

        android:layout_alignParentBottom="true"

        android:ems="10" >

        <requestFocus />

    </EditText>

</RelativeLayout> 

不设置状态栏时,点EditText弹出输入法,EditText会跟着输入法框上移, 使用SystemBarTint设置状态栏后,点EditText弹出输入法,输入法框覆盖掉了EditText,

求大神解决使用SystemBarTint设置状态栏后,点EditText弹出输入法,EditText不被覆盖,不胜感激!!!!

原文链接:http://www.apkbus.com/blog-172139-58848.html

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP