在Xamarin中通过新活动加载时,布局不显示内容

问题描述 投票:6回答:1

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

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

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

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

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

我需要在运行活动时显示Contacts.axml布局。我希望我已经明确了这一点。我目前的代码如下。

DiallerActivity的代码

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>
c# android layout xamarin xamarin.android
1个回答
0
投票

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

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

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

之后我做了一次测试,一切都恢复了。

© www.soinside.com 2019 - 2024. All rights reserved.