如何在MapsActivity的底部添加一个progressBar和一个textView

时间:2019-01-13 11:10:31

标签: android textview progress-bar google-maps-api-2

我想在MapsActivity的底部添加一个progressBar和一个textView。

我试图拖动到type T a = [a] 的“设计”选项卡中,但未添加任何小部件。我还尝试使用“文本”选项卡添加它们,但它们仍保留在我的活动的左上方。

unit = []
e a = [a]
(•) = append

free f ((*),zero) = f' where
  f' [] = zero
  f' (x:xs) = f x * f' xs

不知道如何解决。谢谢您的时间和考虑。

1 个答案:

答案 0 :(得分:1)

这是因为您的根目录布局设置不正确,请尝试以下操作:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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


    <TextView
        android:id="@+id/txtIndirizzo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:padding="5dp"
        android:text="Il Mio Indirizzo"
        android:visibility="visible" />

    <ProgressBar
        android:id="@+id/pgbVitaGiocaotre"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_toEndOf="@+id/txtIndirizzo"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginBottom="8dp"
        android:layout="@+id/linearLayout" />

    <TextView
        android:id="@+id/txtElisir"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_toEndOf="@+id/pgbVitaGiocaotre"
        android:padding="5dp"
        android:text="NElisir"
        android:visibility="visible" />
</RelativeLayout>