我正在使用Xamarin开发应用程序。
我有三项活动, DiallerActivity , ContactsActivity 和 SplashActivity - 以及两个.axml布局,Main.axml和Contacts.axml
第一次加载 SplashActivity 会在打开应用时显示启动画面,完成后会加载 DiallerActivity ,显示我的 Main.axml 布局 - 这很好。
在我的 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 code
<?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>
答案 0 :(得分:0)
Xamarin似乎有一个错误。当我来回重命名.axml文件并在values \ strings.xml中试验字符串时,我还有一个空白屏幕(操作栏除外),有时给它们与.axml文件同名。不确定字符串是否与它有关,但我记得在编译时遇到某种错误。
无论如何,我的解决方案是
之后我做了一次测试,一切都恢复了。