0

我正在开发一个应用程序,我需要在设备屏幕的右半部分显示谷歌地图。屏幕的左半部分包含列表视图格式的文本。请帮助我如何设计UI部分或layout.xml .....提前谢谢..!!!

4

3 回答 3

0

也许你可以研究这样的事情?我以前在应用程序中使用过这种格式

 <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <LinearLayout 
        android:layout_width="wrap_content"
        android:gravity="center"
        android:orientation="vertical">
    <MapView />

    </LinearLayout>

  <LinearLayout 
        android:layout_width="wrap_content"
        android:gravity="center"
        android:orientation="vertical">

    <ListView />

 </LinearLayout>
于 2013-06-26T09:57:56.170 回答
0

尝试使用Fragments,这里有一些培训链接

在 Android 中使用片段

碎片交易

于 2013-06-26T09:50:45.490 回答
0

使用水平方向的线性布局并将您的 mapview 和 listview 都放在其中,现在给它们类似的权重。也许这会起作用。例如在 mapview 和 listview 中给 layout_weight 1 或 0.5。

于 2013-06-26T09:45:30.100 回答