你能指出我正确的方向:我如何在Xamarin.Forms中实现一个带有行为的明确输入按钮。 行为将是:当点击清除图标时,Android和iOS端的条目内容将被删除。
默认情况下,输入控件没有此功能。
结果将是:
答案 0 :(得分:4)
经过一些研究后,我设法用效果来做到这一点。
缩小尺寸是你必须分别在Android项目和iOS项目上进行。
与Jason一样,建议也可以使用自定义渲染器完成。但是你仍然必须在每个Android / iOS项目上实现它。
在android项目方面,你可以通过添加如下效果来实现:
注意:在共享代码之前,我必须告知您必须在Resources / drawable中添加一个名为ic_clear_icon.png的图标。
/// <summary>
/// Adding a clear entry effect.
/// </summary>
public class ClearEntryEffect : PlatformEffect
{
/// <summary>
/// Attach the effect to the control.
/// </summary>
protected override void OnAttached()
{
ConfigureControl();
}
protected override void OnDetached()
{
}
private void ConfigureControl()
{
EditText editText = ((EditText)Control);
editText.AddTextChangedListener(new OnTextChangedListener(editText));
editText.FocusChange += EditText_FocusChange;
}
/// <summary>
/// If the entry looses focus, delete the x icon.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void EditText_FocusChange(object sender, Android.Views.View.FocusChangeEventArgs e)
{
var editText = (EditText)sender;
if (e.HasFocus == false)
editText.SetCompoundDrawablesRelativeWithIntrinsicBounds(0, 0, 0, 0);
}
}
/// <summary>
/// Adding an OnTextChangedListener to my entry.
/// </summary>
public class OnTextChangedListener : Java.Lang.Object, Android.Text.ITextWatcher
{
private EditText _editText;
public OnTextChangedListener(EditText editText)
{
_editText = editText;
}
public void AfterTextChanged(IEditable s)
{
}
public void BeforeTextChanged(ICharSequence s, int start, int count, int after)
{
}
public void OnTextChanged(ICharSequence s, int start, int before, int count)
{
if (count != 0)
{
_editText.SetCompoundDrawablesRelativeWithIntrinsicBounds(0, 0, Resource.Drawable.ic_clear_icon, 0);
_editText.SetOnTouchListener(new OnDrawableTouchListener());
}
else
_editText.SetCompoundDrawablesRelativeWithIntrinsicBounds(0, 0, 0, 0);
}
}
/// <summary>
/// Adding a Touch listener so it can be clicked in order to remove the text.
/// </summary>
public class OnDrawableTouchListener : Java.Lang.Object, Android.Views.View.IOnTouchListener
{
public bool OnTouch(Android.Views.View v, MotionEvent e)
{
if (v is EditText && e.Action == MotionEventActions.Up)
{
EditText editText = (EditText)v;
if (editText.Text != null)
editText.SetCompoundDrawablesRelativeWithIntrinsicBounds(0, 0, Resource.Drawable.ic_clear_icon, 0);
if (editText.GetCompoundDrawables()[2] != null)
{
//If the region on which i tapped is the region with the X the text will be cleaned
if (e.RawX >= (editText.Right - editText.GetCompoundDrawables()[2].Bounds.Width()))
{
editText.Text = string.Empty;
return true;
}
}
}
return false;
}
}
在iOS项目方面更简单。因为它原生于它:
public class ClearEntryEffect : PlatformEffect
{
protected override void OnAttached()
{
ConfigureControl();
}
protected override void OnDetached()
{
}
private void ConfigureControl()
{
((UITextField)Control).ClearButtonMode = UITextFieldViewMode.WhileEditing;
}
}
现在你在PCL项目中创建一个效果类,你引用了两个ClearEntryEffect类(来自Android / iOS项目)。
需要此效果类,因此可以从声明条目的XAML文件中进行引用。
public class ClearEntryEffect : RoutingEffect
{
public ClearEntryEffect() : base("Effects.ClearEntryEffect")
{
}
}
现在你只需将它在共享表单项目(在我的情况下为PCL)中引用到xaml中:
1)引用效果所在的命名空间: 的xmlns:效果=&#34; CLR-名称空间:YourNamespace.Common.Effects&#34;
2)将效果添加到条目中:
<Entry x:Name="OrderNo"
Text="{Binding OrderNo, Mode=TwoWay}"
<Entry.Effects>
<effects:ClearEntryEffect/>
</Entry.Effects>
</Entry>
答案 1 :(得分:2)
我认为你需要这个渲染器,例如在android平台集android:drawableRight
中。在iOS平台上设置UITextview
的RightView属性。
另一个选项是将您的Entry
用Grid
包裹在Image
中。
<Grid>
<Entry></Entry>
<Image Source="your image"
HeightRequest="24" // some height
WidthRequest="24" //some width
HorizontalOptions="End"
.... some margins>
</Image>
</Grid>
答案 2 :(得分:1)
适用于Android和iOS。
这是我的xaml。
<Grid>
<Entry x:Name="search" TextChanged="SearchChanged" Placeholder="Search"/>
<Image x:Name="clearSearch" Source="delete.png" HeightRequest="16" WidthRequest="16" HorizontalOptions="End">
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="OnSearchTap" NumberOfTapsRequired="1" />
</Image.GestureRecognizers>
</Image>
</Grid>
这是我的c#
private void OnSearchTap(object sender, EventArgs args)
{
search.Text = "";
}
答案 3 :(得分:0)
ClearButtonVisibility
属性已添加到新的 Xamarin.Forms 中,因此现在不需要自定义呈现器。例如:
<Entry Text="Xamarin.Forms"
ClearButtonVisibility="WhileEditing" />
请参阅 Xamarin.Forms 文档中的 Display a clear button。