gpt4 book ai didi

c# - 通过 Xamarin 中的新 Activity 加载时布局不显示内容

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:44:46 26 4
gpt4 key购买 nike

我正在使用 Xamarin 开发应用。

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

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

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

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

我需要在 Activity 运行时显示 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>

最佳答案

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

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

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

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

关于c# - 通过 Xamarin 中的新 Activity 加载时布局不显示内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15454193/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com