6

我正在用 Xamarin 开发一个应用程序。

我有三个活动,DiallerActivityContactsActivitySplashActivity - 以及两个 .axml 布局, Main.axml 和 Contacts.axml

SplashActivity是第一个加载的,它在打开应用程序时显示启动画面,完成后它会加载显示我的Main.axml布局的DiallerActivity - 这工作正常。

在我的Main.axml布局中,我有一个按钮,单击该按钮会加载ContactsActivity,然后应该加载Contacts.axml,它里面只有 3 个按钮和一个标签.. 没有一个被编程来做任何事情。

问题是,当单击按钮时,显示变为空白屏幕,仍然在屏幕顶部显示 android 栏。它只是不显示 .axml 文件中的任何内容。

我需要在活动运行时显示Contacts.axml布局。我希望我已经说清楚了。我当前的代码如下。

DialerActivity 的代码

protected override void OnCreate (Bundle bundle)
    {
        base.OnCreate (bundle);

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

Button btnAcceptClick = FindViewById<Button> (Resource.Id.btnAccept);

btnAcceptClick.Click += delegate {
            StartActivity (typeof(VoWiFiApplicationFinal.ContactsActivity));
        };

ContactsActivity 的代码

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

        // setting the contacts.axml as the view
        SetContentView (Resource.Layout.Contacts);
    }
}

有谁知道为什么没有显示 Contacts.axml ?如果您需要我提供更多信息,请说出来,我会把它带过来。顺便说一下,我使用C#作为我的语言,所以如果它甚至适用于脑海中的问题,我更喜欢与此相关的帮助。谢谢阅读。

Contacts.xaml 代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<LinearLayout
    android:layout_width="fill_parent"
    android:id="@+id/toptest"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+/label1"
        android:text="testlabel" />
</LinearLayout>
<LinearLayout
    android:layout_width="fill_parent"
    android:id="@+id/testagain"
    android:layout_height="wrap_content"
    android:orientation="horizontal" />
<LinearLayout
    android:layout_width="fill_parent"
    android:id="@+id/menuBar"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <Button
        android:layout_width="fill_parent"
        android:text="ACCEPT"
        android:id="@+id/btnAccep"
        android:layout_height="wrap_content"
        android:layout_weight="1" />
    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/btnDeclin"
        android:layout_weight="1"
        android:text="DECLINE" />
    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/btntes"
        android:layout_weight="1"
        android:text="TEST" />
</LinearLayout>
</LinearLayout>
4

1 回答 1

0

Xamarin 中的某个地方似乎存在错误。当我来回重命名 .axml 文件并尝试使用 values\strings.xml 中的字符串时,我也得到了一个空白屏幕(操作栏除外),有时将它们命名为与 .axml 文件相同的名称。不确定字符串是否与它有关,但我记得在编译时遇到了某种错误。

无论如何,我的解决方案是

  1. 备份 .axml 文件的内容并完全删除该文件。
  2. 使用与原始名称不同的名称创建一个新的 .axml 文件。
  3. 将备份的内容粘贴到新文件中。
  4. 将新文件重命名为旧名称。

之后我进行了试运行,一切都恢复了。

于 2015-03-26T15:30:48.840 回答