i am new to xamarin software. i am try to write a android,ios app with autocompleteview.
Currently i have three project with the package "Xamarin.CustomControls.AutoCompleteView"
The below are my layout
`
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage.Content>
<Grid.RowDefinitions>
</Grid.RowDefinitions>
<StackLayout x:Name="StackLayout_Bottom" Orientation="Vertical" Spacing="20">
<StackLayout x:Name="StackLayout_Entries" HorizontalOptions="FillAndExpand">
<customControls:AutoCompleteView
x:Name="Entry_ImgTags" BackgroundColor="#F8F8F8" Placeholder="image tags"
TextColor="#6B6E6D" PlaceholderColor="#6B6E6D" FontFamily="Brandon_Reg_Italic"
FontSize="17" Margin="20,10,20,0" HorizontalTextAlignment="Center" HorizontalOptions="FillAndExpand"
VerticalOptions="CenterAndExpand">
</customControls:AutoCompleteView>
</StackLayout>
</StackLayout>
</StackLayout>
</StackLayout>
<Grid x:Name="Grid_Loader" Grid.Row="1" IsVisible="false" BackgroundColor="White" Opacity="0.7">
<ActivityIndicator x:Name="Loader_UploadImage" IsRunning="false" HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand" />
</Grid>
</Grid>
</ScrollView>
</ContentPage.Content>
`
This layout work fine in compile time but fail in run time
the exception
{Xamarin.Forms.Xaml.XamlParseException: Position 52:34. Type
customControls:AutoCompleteView not found in xmlns clr-namespace:Xamarin.CustomControls at Xamarin.Forms.Xaml.CreateValuesVisitor.Visit (Xamarin.Forms.Xaml.ElementNode node, Xamarin.Forms.Xaml.INode…}
Do anyone have any idea on this issue? Or can help me to use autocompleteview in xamarin.android and xamarin.IOS project