Removing Tap Event in a Frame in Xamarin Forms - c#

I have a label inside of a Frame in Xamarin Forms.
<Frame BackgroundColor="{x:Static resources:AppStyleConstants.HeaderColor}" Margin="0,10,0,10">
<Label
Text="{x:Static resources:Labels.ChooseProviderTitle}" HorizontalOptions="Start"
VerticalOptions="Center"
FontSize="48"
TextColor="White" />
</Frame>
Now when I tap on it, I keep on hearing the tap sound. I am assuming that there is a default tap attached to the frame since after removing the frame, the sound disappears as well. I want to get rid of that sound since the clients think (clients are elderly people) that an action is supposed to happen. Can anyone suggest something I can do to remove the sound coming?

Related

Update a ViewCell in a TableView with UnevenRows doesn´t work correctly Xamarin.Forms

Fill the TableView with so many ViewCells, so you must scroll the page to see the last ViewCell.
If you then update the last ViewCell (change the text of the label) over the Tapped-Event, the label.Text would not be updated..
PS: The ForceUpdateSize is no way the fix the solution, because on iOS the app freeze at the sixth time.
<TableView Intent="Settings" HasUnevenRows="True">
<TableRoot>
<TableSection>
<ViewCell x:Name="DefaultViewCell" Tapped="ItemTapped">
<StackLayout>
<Label x:Name="DefaultLabel" />
</StackLayout>
</ViewCell>
<!--.....-->
</TableSection>
</TableRoot>
</TableView>
I have tested your sample code , it actually happened the phenomenon your describe. Although it not happens in Android ,however it occurs in IOS .Maybe there are something difference about Label between IOS anf Android.
Finally , I found a solution in IOS. You can set a default Text Value to Label ,then Tapped method can work .
As Follow:
<TableView Intent="Settings" HasUnevenRows="True" BackgroundColor="Accent" >
<TableRoot>
<TableSection>
<ViewCell x:Name="DefaultViewCell" Tapped="DefaultViewCell_Tapped">
<StackLayout>
<Label x:Name="DefaultLabel" Text="Default Text "/>
</StackLayout>
</ViewCell>
...
</TableSection>
</TableRoot>
</TableView>

ActivityIndicator not showing in XAML or CodeBehind

I have a weird situation on my Xamarin.Forms app. I´m trying to show an ActivityIndicator, but it is not showing in any condition. I´ve set all conditions on XAML and then I tried on code behind. But I could not get it to work. This is the code:
<StackLayout HorizontalOptions="Center"
VerticalOptions="Center">
<ActivityIndicator x:Name="actIndicator"
Color="Blue"
IsVisible="True"
IsRunning="True"/>
<Label x:Name="lblCargando"
Text="Cargando..." />
<Label x:Name="lblStatus"/>
<Button x:Name="btnCerrar"
Text="Cerrar"
IsVisible="False"
Clicked="Cerrar_Clicked"/>
</StackLayout>
Is there something missing?.
Thanks.
Finally, it seems that there was an issue with the emulator that was executing an old version of code.
I deleted the emulator and re create it and get rid of the problem.

How to partially cut ViewCell separator line in Xamarin Forms?

I am using ViewCell to create rows in my table settings page. I have a setting to select a Light or Dark theme.
<ViewCell Height="50">
<StackLayout x:Name="darkTheme" VerticalOptions="FillAndExpand" Padding="20,0,20,0">
<StackLayout Orientation="Horizontal" VerticalOptions="CenterAndExpand">
<Label Text="Dark" XAlign="Center" FontSize="15"/>
<Label x:Name="darkThemeCheckmark" Text="{x:Static local:FontAwesome.FACheck}" FontFamily="FontAwesome" XAlign="Center" IsVisible="false" FontSize="12" HorizontalOptions="EndAndExpand"/
</StackLayout>
</StackLayout>
</ViewCell>
<ViewCell Height="50">
<StackLayout x:Name="lightTheme" VerticalOptions="FillAndExpand" Padding="20,0,20,0">
<StackLayout Orientation="Horizontal" VerticalOptions="CenterAndExpand">
<Label Text="Light" XAlign="Center" FontSize="15"/>
<Label x:Name="lightThemeCheckmark" Text="{x:Static local:FontAwesome.FACheck}" FontFamily="FontAwesome" XAlign="Center" IsVisible="false" FontSize="12"/>
</StackLayout>
</StackLayout>
</ViewCell>
Whenever I switch from dark to light theme, there is faint light line on the left side between my rows that I can't seem to get rid of. Please refer to the images below:
In my renderer I have set the following:
tableView.LayoutMargins = new UIEdgeInsets() { Left = 20 };
cell.SeparatorInset = new UIEdgeInsets() { Left = 20 };
cell.LayoutMargins = new UIEdgeInsets() { Left = 20 };
Anyone knows how to get rid of this line?
Edit:
I wanted it to look like below:
I am novice to xamarin but, According to this post you need to do this on the UITableView and on your UITableViewCell subclasses.
I hope this will help you. :)
Apologies in advance incase you have already considered this but I believe what you're looking for is 'TableView.SeparatorInset' this would apply to your renderer rather than the xaml your using in your PCL. You can find the documentation around styling the tableviews at this link.
E.G.
TableView.SeparatorInset.InsetRect(new CGRect(4, 4, 150, 2));
Moving the inset of the seperator will get around the problem I saw you mention in the comments of the other answer about the whole table shifting. Please let me know if you've tried this already, it's the simplest solution but there are other options available to you. (They just aren't as nice).
Edit: Example of a way of achieving your goals by creating your own seperators, not my favourite but would also resolve the issue you've highlighted as you'd have complete control over the styling of a seperator. Refer to this Link

Button's Background in Xaml UWP

in a UWP application I have a button its Background property is set to "DeepPink", but whenever I hover my mouse over it, it changes to gray (the default color),
here is my code:
<Button Content="Hello World" Margin="100,0,0,0" Background="DeepPink"/>
Am I missing something??
That only defines the default state of the button, not the hover state.
You can either create a custom control template (you can see an example here), or go the easy way of changing colors with Lightweight styling - I'd recommend the second!
The best alternative would be to create Buttons like UI using Frame and Label. In this case, the background color will remain the same.
Example:
<Frame Padding="8" WidthRequest="100" HasShadow="False" BorderColor="Gray"
HorizontalOptions="Center">
<Label Text="Button" HorizontalOptions="Center" VerticalOptions="Center"/>
</Frame>

Activity Indicator is not displaying in middile - XamarinForms WinPhone81

I'm experiencing a strange behaviour of ActivityIndicator in my XamarinForms project. The indicator loads up perfectly in WinPhone81 but not in the middle of the layout for the first time, but it works perfectly from the second time to infinity. Below is the code I used:
In XAML:
<StackLayout x:Name="blueBar" Padding ="0,0,0,0" Orientation ="Vertical"
HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" >
</StackLayout>
In CS:
ActivityIndicator loading = new ActivityIndicator();
blueBar.Children.Add(loading);
loading.IsRunning = true;
//some functions
blueBar.Children.Remove(loading);
Does any knows why its behaving like this ?!
Any suggestions/guide/help will be appreciated..!!
Thanks in advance.
Note: The ActivityIndicator works well and fine in Droid & iOS projects.
Output: as I'm experiencing
1.First time execution of the page:
2.Second time execution of the same page:
Output: as per -Chandresh Khambhayata
Thanks for helping me out guys...
I Finally figured out an answer for my question...
Here is the working code of mine (on all the three platforms).
XAML :
<StackLayout x:Name="blueBar" Padding="0,0,0,0" Orientation="Vertical" VerticalOptions="FillAndExpand" >
<ActivityIndicator x:Name="loading" IsRunning="true"></ActivityIndicator>
</StackLayout>
CS :
somebtn.Clicked += async(sender,e) => {
loading.IsVisible = true;
//some await functions like api call or something
loading.IsVisible = false;
}
The actual problem is., the Indicator is not allocated by InitializeComponent() before., so when I click any of the button for the first time., Indicator displays to the left of the layout.
But., now the Indicator is initialized by InitializeComponent()., and so the indicator is displaying in the middle for the first click itself...
Note : This problem only occured on windowsphone only not on ios and android projects.
Now the updated code works well and good on all the three platforms.
if you want to display ActivityIndicator in center of the screen then you most have to apply HorizontalOptions="Center" and VerticalOptions="Center"
I am using the below XML code and it's working perfect for me.
<StackLayout VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand">
<ActivityIndicator Color="White" HorizontalOptions="Center" VerticalOptions="Center" />
<Label Grid.Row="1" x:Name="LabelLoading" HorizontalOptions="Center" TextColor="White" Text="Loading..." FontFamily="Droid Sans Mono" HorizontalTextAlignment="Center" VerticalTextAlignment="Center" />
</StackLayout>
Here is programmatically setting activity indicator.
ActivityIndicator activityIndecator = new ActivityIndicator();
activityIndecator.Color = Color.White;
activityIndecator.HorizontalOptions = LayoutOptions.Center;
activityIndecator.VerticalOptions = LayoutOptions.Center;
blueBar.Children.Remove(activityIndecator);
Thank You.
it seems like you need to put your StackLayout inside a AbsoluteLayout first in order for you to adjust the ActivityIndicator to the middle.
This should link help you.
Haven't tried this yet, but it looks like you need to do a lot of stuff to achieve it.
Hope it helps!

Categories