How to stop scrollview zoomable in Xamarin.forms?
up vote
0
down vote
favorite
I'm new about Xamarin forms. I have created the scrollview and inside the some content. It's working fine. But I want to stop Zoom option.
<ContentPage.Content>
<ScrollView>
<StackLayout>
<BoxView BackgroundColor="Red" HeightRequest="600" WidthRequest="150" />
<Entry />
</StackLayout>
</ScrollView>
</ContentPage.Content>
Any idea how to disable zoom option? It should have default option in Xamarin form.
c# xaml xamarin.forms xamarin.ios xamarin.android
add a comment |
up vote
0
down vote
favorite
I'm new about Xamarin forms. I have created the scrollview and inside the some content. It's working fine. But I want to stop Zoom option.
<ContentPage.Content>
<ScrollView>
<StackLayout>
<BoxView BackgroundColor="Red" HeightRequest="600" WidthRequest="150" />
<Entry />
</StackLayout>
</ScrollView>
</ContentPage.Content>
Any idea how to disable zoom option? It should have default option in Xamarin form.
c# xaml xamarin.forms xamarin.ios xamarin.android
What is the Zoom option you are talking about? There is nothing like that in Xamarin forms for a Scroll View
– hashimks
Nov 8 at 5:23
Xamarin.Forms does not do anything special for scrolling, it is feature of underlying platform Android/iOS/Windows that provide UI virtualization to improve speed.You can use custom renderer to achieve this.
– jack Hua
Nov 8 at 5:36
What do you mean about zoom?ScrollView is disable zoom in dafault.
– Lucas Zhang - MSFT
Nov 9 at 2:59
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm new about Xamarin forms. I have created the scrollview and inside the some content. It's working fine. But I want to stop Zoom option.
<ContentPage.Content>
<ScrollView>
<StackLayout>
<BoxView BackgroundColor="Red" HeightRequest="600" WidthRequest="150" />
<Entry />
</StackLayout>
</ScrollView>
</ContentPage.Content>
Any idea how to disable zoom option? It should have default option in Xamarin form.
c# xaml xamarin.forms xamarin.ios xamarin.android
I'm new about Xamarin forms. I have created the scrollview and inside the some content. It's working fine. But I want to stop Zoom option.
<ContentPage.Content>
<ScrollView>
<StackLayout>
<BoxView BackgroundColor="Red" HeightRequest="600" WidthRequest="150" />
<Entry />
</StackLayout>
</ScrollView>
</ContentPage.Content>
Any idea how to disable zoom option? It should have default option in Xamarin form.
c# xaml xamarin.forms xamarin.ios xamarin.android
c# xaml xamarin.forms xamarin.ios xamarin.android
asked Nov 8 at 2:59
Singapore
1,98521323
1,98521323
What is the Zoom option you are talking about? There is nothing like that in Xamarin forms for a Scroll View
– hashimks
Nov 8 at 5:23
Xamarin.Forms does not do anything special for scrolling, it is feature of underlying platform Android/iOS/Windows that provide UI virtualization to improve speed.You can use custom renderer to achieve this.
– jack Hua
Nov 8 at 5:36
What do you mean about zoom?ScrollView is disable zoom in dafault.
– Lucas Zhang - MSFT
Nov 9 at 2:59
add a comment |
What is the Zoom option you are talking about? There is nothing like that in Xamarin forms for a Scroll View
– hashimks
Nov 8 at 5:23
Xamarin.Forms does not do anything special for scrolling, it is feature of underlying platform Android/iOS/Windows that provide UI virtualization to improve speed.You can use custom renderer to achieve this.
– jack Hua
Nov 8 at 5:36
What do you mean about zoom?ScrollView is disable zoom in dafault.
– Lucas Zhang - MSFT
Nov 9 at 2:59
What is the Zoom option you are talking about? There is nothing like that in Xamarin forms for a Scroll View
– hashimks
Nov 8 at 5:23
What is the Zoom option you are talking about? There is nothing like that in Xamarin forms for a Scroll View
– hashimks
Nov 8 at 5:23
Xamarin.Forms does not do anything special for scrolling, it is feature of underlying platform Android/iOS/Windows that provide UI virtualization to improve speed.You can use custom renderer to achieve this.
– jack Hua
Nov 8 at 5:36
Xamarin.Forms does not do anything special for scrolling, it is feature of underlying platform Android/iOS/Windows that provide UI virtualization to improve speed.You can use custom renderer to achieve this.
– jack Hua
Nov 8 at 5:36
What do you mean about zoom?ScrollView is disable zoom in dafault.
– Lucas Zhang - MSFT
Nov 9 at 2:59
What do you mean about zoom?ScrollView is disable zoom in dafault.
– Lucas Zhang - MSFT
Nov 9 at 2:59
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53200926%2fhow-to-stop-scrollview-zoomable-in-xamarin-forms%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What is the Zoom option you are talking about? There is nothing like that in Xamarin forms for a Scroll View
– hashimks
Nov 8 at 5:23
Xamarin.Forms does not do anything special for scrolling, it is feature of underlying platform Android/iOS/Windows that provide UI virtualization to improve speed.You can use custom renderer to achieve this.
– jack Hua
Nov 8 at 5:36
What do you mean about zoom?ScrollView is disable zoom in dafault.
– Lucas Zhang - MSFT
Nov 9 at 2:59