Xamarin.Android:Visual Studio

时间:2018-01-09 10:50:03

标签: xamarin.android android-constraintlayout

我正在尝试在Visual Studio的全新安装中使用ConstraintLayout。我在Nuget中添加了 Xamarin.Android.Support.Constraint.Layout Xamarin.Android.Support.Constraint.Layout.Solver 包。

我尝试在XML中声明一个非常简单且小的UI,但IDE无法解析ConstraintLayout特定的属性。 app:layout_constraintStart_toStartOf="parent"等属性用蓝色下划线,错误列表窗口给出了这样的解释:

  

在   ' http://schemas.android.com/apk/res-auto:layout_constraintStart_toStartOf'   属性未声明。

有趣的是,代码确实可以编译,但只要IDE不能解析属性,智能感知就无法工作,在这种情况下开发会很痛苦。

是否有人遇到类似问题?

我的示例代码摘录如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
  <android.support.v7.widget.CardView
      android:id="@+id/cardView"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      app:cardBackgroundColor="@color/colorPaleYellow"
      app:cardElevation="0dp">

    <android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

      <Button
          android:id="@+id/proposal_card__name_button"
          android:layout_width="wrap_content"
          android:layout_height="30dp"
          android:layout_marginStart="16dp"
          android:layout_marginTop="8dp"
          android:text="Button"
          app:layout_constraintStart_toStartOf="parent"
          app:layout_constraintTop_toTopOf="parent" />

1 个答案:

答案 0 :(得分:0)

您没有使用约束布局。这是使用“ ConstraintLayout”元素的示例

android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:showIn="@layout/activity_main"
tools:context=".MainActivity"



<Button
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:background="@android:color/holo_red_dark"
    android:id="@+id/view1"
     app:layout_constraintLeft_toLeftOf="parent"  
    app:layout_constraintRight_toRightOf="parent"  
    app:layout_constraintBottom_toBottomOf="parent"  
    app:layout_constraintTop_toTopOf="parent" 
    android:text = "Button 1"
/>

android.support.constraint.ConstraintLayout>

无法直接发布,但基本上将Linear切换为ConstraintLayout