gpt4 book ai didi

android - 使用软键盘向上移动一种布局,但将一种布局保留在底部

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:17:29 26 4
gpt4 key购买 nike

我有以下 TabHost 布局:

<?xml version="1.0" encoding="iso-8859-1"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="0dp"
android:padding="0dp" >

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="0dp"
android:background="@drawable/main_app_background"
android:orientation="vertical"
android:padding="0dp" >

<ImageView
android:id="@+id/logo"
android:layout_width="fill_parent"
android:layout_height="@dimen/site_logo_height"
android:layout_margin="0dp"
android:background="@color/tab_subtitle_background"
android:padding="0dp"
android:src="@drawable/barlogo" />

<FrameLayout
android:id="@+id/tab_subtitle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="0dp"
android:gravity="center"
android:padding="0dp" />

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:layout_margin="0dp"
android:layout_weight="99"
android:padding="0dp" />

<Button
android:id="@+id/btn_save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="15dp"
android:layout_marginTop="7dp"
android:focusableInTouchMode="true"
android:imeOptions="actionNext"
android:tag="done"
android:text="Ok" />

<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="0dp"
android:layout_weight="1"
android:padding="0dp" />
</LinearLayout>

</TabHost>

问题是,当软键盘出现时,Button 和 TabWidget 都会向上移动。

我的目标是将 TabWidget 保持在底部(软键盘下方)并让“确定”按钮向上移动(在键盘顶部)。可能吗?

提前致谢!

最佳答案

尝试这可能是使用完全调整 list

<activity
android:windowSoftInputMode="adjustResize"
android:name=".youractivity" android:label="@string/app_name" >

参见 move up text view only when virtual keyboard open on android

关于android - 使用软键盘向上移动一种布局,但将一种布局保留在底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12898393/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com