我的问题如下-
我有一个
webview
在我的活动中及以下
网络视图
,一种线性布局,显示粘贴在底部的页脚图标。
现在,当软键盘弹出时,我希望整个活动都调整大小,但我不希望页脚图标上移,我希望它们粘在底部。
AdjustPan
和
adjustNothing
不适用于我,因为我的网页包含
editTexts
用户名和密码,这两个属性都使它们留在软键盘后面。
非常感谢您的帮助。
编辑
我想浮动按钮,这是我的线性布局的一部分,不出现时,软键盘弹出。
我的Xml如下-
<?xml version="1.0" encoding="utf-8"?>
<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"
android:orientation="vertical"
android:id="@+id/rel_parent"
tools:context=".Login">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/rel_web">
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/wv_main"
android:layout_weight="1"
android:isScrollContainer="false">
</WebView>
<ProgressBar
android:id="@+id/progressBar1"
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_centerVertical="true"
android:layout_centerInParent="true"/>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/offline_mode"
android:layout_centerInParent="true"
android:background="#ffffff"
android:visibility="gone">
<ImageView
android:layout_width="90dp"
android:layout_height="90dp"
android:src="@drawable/offline"
android:id="@+id/im_offline" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:textSize="18sp"
android:text="Offline"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/im_offline"/>
</RelativeLayout>
<LinearLayout
android:id="@+id/ll_buttons"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="47px"
android:gravity="center_horizontal"
android:visibility="visible"
android:weightSum="1">
<LinearLayout
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_weight="0.80"
android:weightSum="11.5">
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5"
android:clickable="true"
android:onClick="openHome"
android:src="@drawable/home_icon"
android:scaleType="centerInside"/>
<View
android:layout_width="0dp"
android:layout_height="30dp"
android:layout_weight="0.5" />
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5"
android:clickable="true"
android:onClick="openHeadphone"
android:src="@drawable/headphone_icon" />
<View
android:layout_width="0dp"
android:layout_height="30dp"
android:layout_weight=".5" />
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5"
android:clickable="true"
android:onClick="openEmail"
android:src="@drawable/email_icon" />
<View
android:layout_width="0dp"
android:layout_height="30dp"
android:layout_weight=".5" />
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5"
android:clickable="true"
android:onClick="openFb"
android:src="@drawable/fb_icon" />
<View
android:layout_width="0dp"
android:layout_height="30dp"
android:layout_weight=".5" />
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5"
android:clickable="true"
android:onClick="openInsta"
android:src="@drawable/instagram_icon" />
<View
android:layout_width="0dp"
android:layout_height="30dp"
android:layout_weight=".5" />
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5"
android:clickable="true"
android:onClick="openYoutube"
android:src="@drawable/youtube" />
</LinearLayout>
</LinearLayout>
</RelativeLayout>
</RelativeLayout>