-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathSlider.cs
99 lines (88 loc) · 3.65 KB
/
Slider.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#region Copyright Syncfusion Inc. 2001-2016.
// Copyright Syncfusion Inc. 2001-2016. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// [email protected]. Any infringement will be prosecuted under
// applicable laws.
#endregion
using Android.App;
using Android.Content;
using Android.Graphics;
using Android.OS;
using Com.Syncfusion.Sfrangeslider;
using System;
using System.Threading.Tasks;
using Android.Widget;
using Android.Views;
namespace SampleBrowser
{
//[con(Label = "Slider")]
public class Slider : SamplePage
{
/*********************************
**Local Variable Inizialisation**
*********************************/
TextView opacityLabel;
SfRangeSlider range;
ImageView mountImg;
int height;
public override View GetSampleContent (Context con)
{
SamplePageContent(con);
/***************
**RangeSlider**
***************/
range = new SfRangeSlider(con);
range.Minimum = 0;range.Maximum = 100; range.Value = 100;
range.ShowRange = false; range.SnapsTo = SnapsTo.None;
range.Orientation = Com.Syncfusion.Sfrangeslider.Orientation.Horizontal;
range.TickPlacement = TickPlacement.BottomRight;
range.ShowValueLabel = true; range.TickFrequency = 20;
range.ValuePlacement = ValuePlacement.BottomRight;
range.LayoutParameters = (new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, GettingStarted_Mobile.getDimensionPixelSize(con,Resource.Dimension.range_ht)));
range.ValueChanged += ValueChanged ;
range.SetY(-30);
//Frame Layout
FrameLayout frame = new FrameLayout(con);
frame.SetBackgroundColor (Color.White);
frame.LayoutParameters = ( new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.MatchParent,GravityFlags.Center));
frame.AddView(GetView(con));
return frame;
}
private LinearLayout GetView(Context con)
{
/***************
**LinearLayout**
***************/
LinearLayout linearLayout = new LinearLayout(con);
linearLayout.SetGravity(Android.Views.GravityFlags.CenterHorizontal);
linearLayout.Orientation = Android.Widget.Orientation.Vertical;
linearLayout.SetBackgroundColor(Color.White);
linearLayout.LayoutParameters = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.MatchParent);
linearLayout.SetPadding(20, 20, 20, 20);
linearLayout.AddView(mountImg);
linearLayout.AddView(opacityLabel);
linearLayout.AddView(range);
return linearLayout;
}
private void SamplePageContent(Context con)
{
height = con.Resources.DisplayMetrics.HeightPixels / 2;
//MountImg
mountImg = new ImageView(con);
mountImg.SetImageResource(Resource.Drawable.mount1);
FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MatchParent, (int)(height + (height / 10)), GravityFlags.Center);
mountImg.SetPadding(12, 0, 10, 0);
mountImg.LayoutParameters = (layoutParams);
//Opacity Label
opacityLabel = new TextView(con);
opacityLabel.Text = " Opacity";
opacityLabel.TextSize = 20;
opacityLabel.Gravity = GravityFlags.Left;
}
public void ValueChanged(object sender, ValueChangedEventArgs e) {
float alpha = (float)(e.Value / 100);
mountImg.Alpha = alpha;
}
}
}