gpt4 book ai didi

android - map 布局问题

转载 作者:行者123 更新时间:2023-11-30 03:20:10 25 4
gpt4 key购买 nike

我是安卓新手。我正在使用谷歌地图制作一个应用程序。在布局文件中有 3 部分,即 Top Layer、Mid Layer、Bottom Layer。Top层一个header,bottom层一个TAB按钮。在中间层 fragment 和编辑文本中。当我点击编辑框时, fragment 就上升了。当 fragment 回到位置时,顶层将不可见。我不知道会发生什么。

<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:background="@drawable/bg"
tools:context=".MainActivity" >

<RelativeLayout
android:id="@+id/topLay"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/jam_alert_topbar"
>
</RelativeLayout>

<RelativeLayout
android:id="@+id/midLay"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/botLay"
android:layout_below="@+id/topLay"
android:layout_margin="10dp" >

<fragment
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/descr"
android:layout_below="@+id/topLay"
class="com.google.android.gms.maps.SupportMapFragment" />

<EditText
android:id="@+id/descr"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_marginTop="5dp"
android:background="@color/white"
android:gravity="top|left"
android:hint="Description"
android:maxLines="4"
android:minLines="4" >
</EditText>
</RelativeLayout>

<LinearLayout
android:id="@+id/botLay"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="center" >

<Button
android:id="@+id/btReport"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/jam_tab_n"
android:onClick="btReport" />

<Button
android:id="@+id/btMap"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/map_tab_h"
android:onClick="btMap" />

<Button
android:id="@+id/btHome"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/report_tab_n"
android:onClick="btHome" />

<Button
android:id="@+id/btSetting"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/settings_tab_n"
android:onClick="btSetting" />
</LinearLayout>

最佳答案

试试这个,你试过这个吗?在特定 Activity 中添加 windowSoftInputMode 属性

android:windowSoftInputMode="adjustPan"

在你的 xml 中。在您的顶部相对布局中添加 android:layout_alinParentTop="true"

 <RelativeLayout
android:id="@+id/topLay"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/jam_alert_topbar"
android:layout_alinParentTop="true"
>
</RelativeLayout>

关于android - map 布局问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19294069/

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