-1
在Xamarin中,我如何在佈局上創建和定位容器?如何在佈局上創建和放置容器?
這裏是我的佈局XML代碼:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<FrameLayout
android:id="@+id/mapWithOverlay"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
我怎樣才能創建具有一個TextView和一個按鈕,然後在那裏我要上的FrameLayout的頂部位置該容器的容器?
在此先感謝
如何顯示上的FrameLayout頂部的 「縮略圖」 的LinearLayout?當應用程序運行時,我看不到TextView或Button? – Garry
問題是FrameLayout裏機器人:ID = 「@ + ID/mapWithOverlay」 的android:layout_width = 「FILL_PARENT」 將其更改爲 的android:layout_width = 「FILL_PARENT」 機器人:在layout_height = 「match_parent」 –
它工作正常我結束。 –