设置按钮文本创建未将文本设置为定义

时间:2016-04-27 03:25:53

标签: android xamarin xamarin.android

我有一个代码来更改文本,如创建

  public class MainActivity : Activity
    {
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Set our view from the "main" layout resource
            SetContentView(Resource.Layout.Main);

            Button btnbut = FindViewById<Button>(Resource.Id.btnbut);
            TextView txtvw = FindViewById<TextView>(Resource.Id.txtView);
            txtvw.Text = "Hello World";
            btnbut.Text = "Hello WOrld";
        }
    }

我的main.axml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:gravity="center_horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/linearLayout1">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="47.5dp"
        android:id="@+id/txtView"
        android:layout_marginLeft="1.0dp"
        android:layout_marginRight="0.0dp" />
    <Button
        android:text="Button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/btnbut" />
</LinearLayout>

当我使用模拟器运行并打开应用程序时,Text与main.axml上的define保持一致,而不是文本定义OnCreate

2 个答案:

答案 0 :(得分:1)

您的代码是正确的,应该导致:

enter image description here

尝试在您的解决方案上执行全部清除/全部构建,然后再次在模拟器上重试您的应用。

注意:如果它仍未正确更新模拟器上的应用程序:

在模拟器中:

Setting / Apps / Select your app / *Uninstall*

enter image description here

答案 1 :(得分:0)

我想我得到你的我不使用xamrain但我认为这是错误尝试改变

SetContentView(Resource.Layout.Main);

SetContentView(Resource.Layout.My main);

因为您的布局名称是“我的主要”而不是“主要”