服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android仿微信QQ聊天顶起输入法不顶起标题栏的问题

Android仿微信QQ聊天顶起输入法不顶起标题栏的问题

2022-11-07 15:21没心没肺没网名 Android

这篇文章主要介绍了Android之仿微信QQ聊天顶起输入法不顶起标题栏问题,本文实例图文相结合给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下

在这记录一下输入法弹出的一系列问题,有的输入法弹出就把整个布局弹上去,有的输入法弹出布局不会有变化,有的输入法弹出遮盖输入框等等问题,网上也有很多说加着加那的,但是看一下都不是很完整,解决不了所有问题,我在这归纳一下大家拿去用吧!

*****先看看做好的效果图*****

Android仿微信QQ聊天顶起输入法不顶起标题栏的问题

一:AndroidManifest.xml里面对应的activity设置

android:windowSoftInputMode="adjustResize"

二:在activity的xml根布局设置

android:fitsSystemWindows="true"

三:为了listview聊天列表的效果,在listview设置

android:transcriptMode="normal"

四:最后粘贴一下每个用到的地方代码

1:AndroidManifest.xml

?
1
2
3
4
5
<!--聊天室-->
  <activity
   android:name=".activity.ChatRoom"
   android:screenOrientation="portrait"
   android:windowSoftInputMode="adjustResize"/>

2:activity的xml根布局和listview

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:background="@color/xmlback"
 android:fitsSystemWindows="true">
 <include
  android:id="@+id/include"
  layout="@layout/titlelayout" />
 <ListView
  android:id="@+id/listview"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:layout_above="@+id/botton"
  android:layout_below="@+id/include"
  android:background="@color/xmlback"
  android:divider="@null"
  android:scrollbars="none"
  android:transcriptMode="normal"></ListView>
 <RelativeLayout
  android:id="@+id/botton"
  android:layout_width="match_parent"
  android:layout_height="70dp"
  android:layout_alignParentBottom="true"
  android:background="@drawable/hlistvbackwl1">
  <RelativeLayout
   android:layout_width="match_parent"
   android:layout_height="50dp"
   android:layout_centerVertical="true"
   android:layout_marginLeft="10dp"
   android:layout_toLeftOf="@+id/textsend"
   android:background="@drawable/ltback">
   <EditText
    android:id="@+id/edittext"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginLeft="10dp"
    android:background="@null"
    android:hint="输入聊天内容"
    android:textSize="14dp" />
  </RelativeLayout>
  <TextView
   android:id="@+id/textsend"
   android:layout_width="50dp"
   android:layout_height="50dp"
   android:layout_alignParentRight="true"
   android:layout_centerVertical="true"
   android:gravity="center"
   android:text="发送"
   android:textColor="@color/zhucolor"
   android:textSize="14dp" />
 </RelativeLayout>
</RelativeLayout>

总结

以上所述是小编给大家介绍的Android仿微信QQ聊天顶起输入法不顶起标题栏的问题,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

原文链接:https://blog.csdn.net/Android_Cll/article/details/103095262

延伸 · 阅读

精彩推荐