在我的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
在哪里出现?
答案 0 :(得分:0)
在主活动的OnCreate
替代中,有...
TabLayoutResource = Resource.Layout.Tabbar;
ToolbarResource = Resource.Layout.Toolbar;
SetContentView(Resource.Layout.Main);