我有很簡單的xamarin經典的應用有以下.axml文件沒有找到路徑類「android.support.constraint.ConstraintLayout」:DexPathList在Xamarin.Android
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"/>
</android.support.constraint.ConstraintLayout>
及以下.cs文件
[Activity(Label = "sa", MainLauncher = true, Icon = "@mipmap/icon")]
public class MainActivity : Activity
{
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
SetContentView(Resource.Layout.Main);//error throws here
}
}
我發現.gradle下面的代碼,以使約束佈局
dependencies {
compile 'com.android.support.constraint:constraint-layout:1.0.2'
}
但是,當然,它ð在Xamarin.Android沒有工作。我試圖安裝 Xamarin Android Constraint Layout 1.0.0-beta5
但它不適用於Mono.Android 6.0。
我該如何解決我的問題?任何猜測?