代码之家  ›  专栏  ›  技术社区  ›  Ian Warburton

main.axml在哪里使用?

  •  0
  • Ian Warburton  · 技术社区  · 6 年前

    在我的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 回复  |  直到 6 年前
        1
  •  0
  •   Ian Warburton    6 年前

    在主要活动的 OnCreate 覆盖,有…

    TabLayoutResource = Resource.Layout.Tabbar;
    ToolbarResource = Resource.Layout.Toolbar;
    
    SetContentView(Resource.Layout.Main);