gpt4 book ai didi

android布局 fragment 和普通布局

转载 作者:行者123 更新时间:2023-11-29 14:52:03 25 4
gpt4 key购买 nike

你好,我的想法是编写一个将 google map api v2 显示为 fragment 的 Activity ,并在底部的两个按钮用于处理服务并在 map 上生成标记。

现在的问题是,是否可以将 map fragment 放入定义和处理按钮的正常布局中,还是必须将按钮放入另一个 fragment 中?

即使我通过 android:height 限制大小,目前 map 也覆盖了整个屏幕

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/DarkGrey">


<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="410dp"
class="com.google.android.gms.maps.SupportMapFragment" />



<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="bottom">
<Button
android:id="@+id/buttonStopTracking"
android:text="@string/btn_stop_tracking"
android:layout_width="160dp"
android:layout_height="60dp"
android:textSize="20sp"
android:textStyle="bold"
/>
<Button
android:id="@+id/buttonCreatePoI"
android:text="@string/btn_create_PoI"
android:layout_width="160dp"
android:layout_height="60dp"
android:textSize="20sp"
android:textStyle="bold"
/>
</LinearLayout>

最佳答案

我希望我的布局 xml 对您有所帮助。

在我的例子中,所有按钮和 TextView 都位于 Google map 上。我正在使用新的 Google Maps API v2,我的 MainActivity 扩展了“android.support.v4.app.FragmentActivity”。

这是我的完整 xml;

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />

<LinearLayout
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="40sp"
android:layout_alignParentTop="true" >

<Button
android:id="@+id/provider_fine"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_inactive"
android:minWidth="160sp"
android:onClick="useFineProvider"
android:text="@string/use_fine_provider" />

<Button
android:id="@+id/provider_both"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_inactive"
android:minWidth="160sp"
android:onClick="useCoarseFineProviders"
android:text="@string/use_both_providers" />

</LinearLayout>

<LinearLayout
android:id="@+id/LinearLayout3"
android:layout_width="match_parent"
android:layout_height="40sp"
android:layout_below="@+id/LinearLayout1" >

<Button
android:id="@+id/reset_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_inactive"
android:minWidth="160sp"
android:onClick="resetButton"
android:text="@string/reset_button" />

<Button
android:id="@+id/calc_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_inactive"
android:minWidth="160sp"
android:onClick="calcButton"
android:text="@string/calc_button" />

</LinearLayout>




<LinearLayout
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="95sp"
android:orientation="vertical"
android:layout_alignParentBottom="true" >

<TextView
android:id="@+id/label_latlng"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/latlng"
android:textSize="10sp" />

<TextView
android:id="@+id/latlng"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="10sp" />

<TextView
android:id="@+id/label_address"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/address"
android:textSize="10sp" />

<TextView
android:id="@+id/address"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="10sp" />

<TextView
android:id="@+id/secondText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="10sp" />

<TextView
android:id="@+id/distanceText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="10sp" />

</LinearLayout>


</RelativeLayout>

结果屏幕如下;出于隐私考虑,我删除了图片上的一些文字。

enter image description here

关于android布局 fragment 和普通布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15012164/

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