溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么解決Android仿微信QQ聊天頂起輸入法不頂起標(biāo)題欄的問(wèn)題

發(fā)布時(shí)間:2021-09-28 14:23:49 來(lái)源:億速云 閱讀:160 作者:小新 欄目:編程語(yǔ)言

這篇文章主要為大家展示了“怎么解決Android仿微信QQ聊天頂起輸入法不頂起標(biāo)題欄的問(wèn)題”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“怎么解決Android仿微信QQ聊天頂起輸入法不頂起標(biāo)題欄的問(wèn)題”這篇文章吧。

一:AndroidManifest.xml里面對(duì)應(yīng)的activity設(shè)置

android:windowSoftInputMode="adjustResize"

二:在activity的xml根布局設(shè)置

android:fitsSystemWindows="true"

三:為了listview聊天列表的效果,在listview設(shè)置

android:transcriptMode="normal"

四:最后粘貼一下每個(gè)用到的地方代碼

1:AndroidManifest.xml

<!--聊天室-->  <activity   android:name=".activity.ChatRoom"   android:screenOrientation="portrait"   android:windowSoftInputMode="adjustResize"/>

2:activity的xml根布局和listview

<?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:pider="@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="輸入聊天內(nèi)容"    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="發(fā)送"   android:textColor="@color/zhucolor"   android:textSize="14dp" /> </RelativeLayout></RelativeLayout>

以上是“怎么解決Android仿微信QQ聊天頂起輸入法不頂起標(biāo)題欄的問(wèn)題”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI