-1
我最近安裝了Visual Studio與Xamarin,基本上在c#中製作android應用程序,但我遇到了問題。 當我嘗試構建應用程序,顯示窗是設計窗口不同: -> The Windows <-Visual Studio Android開發中的應用程序UI構建器不起作用
Main.axml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minWidth="25px"
android:minHeight="25px">
<Button
android:text="Button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/button1" />
</LinearLayout>
MainActivity.cs:
using Android.App;
using Android.Widget;
using Android.OS;
namespace RemindMe
{
[Activity(Label = "RemindMe", MainLauncher = true, Icon = "@drawable/icon")]
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);
Toast.MakeText(this.ApplicationContext, "Welcome! This app is currently under construction...", ToastLength.Short).Show();
}
}
}
也許您的Visible屬性爲false,請張貼您的代碼以查找更多信息。 –
axml文件? - 它的字面上只是一個按鈕。 – Exus
那裏 - 更新它。 Theres沒有太多雖然 – Exus