Main.axml在哪里使用?

时间:2018-07-27 15:38:35

标签: xamarin.forms

在我的Android项目中,我有一个名为Main.axml的文件,它大致包含以下内容...

<?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:padding="10dp">
    <TextView
        android:text="HELLO WORLD"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/msgText"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:padding="10dp" />
</LinearLayout>

此文件在哪里引用,TextView在哪里出现?

1 个答案:

答案 0 :(得分:0)

在主活动的OnCreate替代中,有...

TabLayoutResource = Resource.Layout.Tabbar;
ToolbarResource = Resource.Layout.Toolbar;

SetContentView(Resource.Layout.Main);