我有一個佈局視圖「PopulatinData.axml」有一個控件,我試圖訪問我的活動類中的佈局,但在每個活動中只訪問「主」佈局。除主佈局外訪問活動的不同佈局
想做 this.SetContentView(Resource.Layout.XXXXXX)
// wnat訪問PopulatingData佈局
PopulatingData.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="PopulateData">
<TextView
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/txtpopulate" />
</LinearLayout>
請讓我知道什麼是從主訪問佈局aparft確切的方法是什麼? ??
使用佈局氣筒。 –
@TarunVarshney你可以請讓我知道語法,即使我可以在setcontentview ..中看到這個解決方案..但不知道如何使用此訪問佈局 – stylishCoder
您是否使用Xamarin? –