11

是否有任何教程可以让我在 xamarin 中设计自定义视图?我想使用 xamarin 为我的 android 应用程序构建捏缩放功能。

我尝试了以下代码,但它不起作用,我总是收到android.view.InflateException: Binary XML file line #1: Error inflating class LA_Application.ZoomView错误

using System;    
using System.Collections.Generic;
using System.Linq;    
using System.Text;    
using Android.App;    
using Android.Content;    
using Android.OS;    
using Android.Runtime;    
using Android.Util;    
using Android.Views;    
using Android.Widget;    
using Android.Graphics;

namespace LA_Application    
{

    public class ZoomView : FrameLayout      
    {

        private ScaleGestureDetector mScaleDetector;    
        private static float mScaleFactor = 1.0f;   


        public ZoomView (Context context) : base (context)
        {
            Initialize ();    
        }

        public ZoomView (Context context, IAttributeSet attrs) : base (context,attrs)    
        {
            Initialize ();    
        }

        public ZoomView (Context context, IAttributeSet attrs, int defStyle) : base (context, attrs, defStyle)
        {
            Initialize ();
        }

        void Initialize ()
        {
            mScaleDetector = new ScaleGestureDetector(Context, new ScaleListener());
        }

        public override bool OnTouchEvent (MotionEvent e)
        {
            mScaleDetector.OnTouchEvent(e);

            return true;
        }

        protected override void OnDraw(Android.Graphics.Canvas canvas)
        {
            base.OnDraw(canvas);

            canvas.Save();    
            canvas.Scale(mScaleFactor, mScaleFactor);
            canvas.Restore();
        }
    }

    private class ScaleListener : ScaleGestureDetector.SimpleOnScaleGestureListener
    {
        public override bool OnScale(ScaleGestureDetector detector)
        {
            mScaleFactor *= detector.ScaleFactor;

            // Don't let the object get too small or too large.
            mScaleFactor = Math.Max(0.1f, Math.Min(mScaleFactor, 5.0f));

            return true;
        }  
    }
}

}

并在布局文件中

<?xml version="1.0" encoding="utf-8"?>
<LA_Application.ZoomView xmlns:android="http://schemas.android.com/apk/res/android"
                         android:layout_width="match_parent"
                         android:layout_height="match_parent"
                         android:id="@+id/my_view" />

活动代码

protected override void OnCreate (Bundle bundle)
{
    base.OnCreate (bundle);

    SetContentView(Resource.Layout.zoomview);

    /*some code*/
}
4

4 回答 4

7

在布局文件中,您需要用小写字母写下您的类的路径。对我来说Core.Droid.MyImageView必须写成core.droid.MyImageView.

我不确定是否只有第一个字母或所有字母都必须写成小写,但您可以尝试使用lA_Application.ZoomViewla_application.ZoomView。其中一个很可能会起作用:)

于 2014-07-22T13:07:43.700 回答
2

这是如何在 xamarin.android 中创建自定义视图的框架

http://xandroid4net.blogspot.com/2014/09/custom-view.html

然后取 Emmanuel Touzery 的答案并将其添加到骨架中

安卓捏缩放

于 2014-09-06T04:23:32.667 回答
1

我建议您查看此 Java Android 教程,了解您需要设置的内容:

http://developer.android.com/training/custom-views/index.html

您可能需要为您的自定义视图创建一个属性 xml 文件。

您可能要考虑的另一种方法是使用片段而不是视图:

http://docs.xamarin.com/guides/android/platform_features/fragments/fragments_walkthrough

于 2013-07-03T11:27:38.843 回答
0

我今天遇到了类似的问题,无意中找到了解决方法。只需在定义 class 之前添加一个“Register” ZoomView

namespace LA_Application    
{
    [Register("la_application.ZoomView")]
    public class ZoomView : FrameLayout      
    {
        ...
    }
}

在 Visual Studio 中右键单击FrameLayout,然后单击“转到定义”,然后您会在其前面找到一个“注册”。Visual Studio 告诉我它是 android 运行时属性。我想这是真正的问题。

顺便说一句,不要忘记用小写写你的命名空间。希望能以某种方式帮助你。

于 2021-11-08T13:01:26.830 回答