如何在Android中设计带有图像,文本和GMap片段的全屏幕布局

时间:2014-04-08 15:35:05

标签: android android-layout

我想设计一个应该占据整个设备屏幕的屏幕(没有ActionBar)。 此屏幕应该在顶部有ImageView,在中间有TextView,&底部的Gmap片段。所以基本上它类似于Yahoo Weather App Screen Minus the Background Image。

你们可以建议我如何实现这个设计。我应该使用哪种布局?任何代码片段都会有所帮助。 谢谢

1 个答案:

答案 0 :(得分:0)

我认为以下布局会对您有所帮助。

    <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"
tools:context=".MainActivity" >

<ImageButton
    android:id="@+id/imgBtnSearch"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_gravity="center"
    android:background="@android:color/transparent"
    android:src="@drawable/ic_launcher" />

<TextView
    android:id="@+id/txtcenter"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:text="center text" />

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