作为我的应用程序的一部分,我有一个简单的屏幕来输入文本。当焦点在EditText中时,它永远不会接收制表符。
我按下虚拟键盘上的tab键,但行为是键盘消失了。
这是我的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Intitulé"
android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText
android:id="@+id/etTextTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:inputType="textCapSentences"
android:singleLine="true"
android:imeOptions="actionNext" >
<requestFocus />
</EditText>
<TextView
android:id="@+id/tvContent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Contenu"
android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText
android:id="@+id/etText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="left|top"
android:layout_marginLeft="15dp"
android:textSize="25sp"
android:lineSpacingExtra="4dp"
android:singleLine="false"
android:inputType="textMultiLine"
android:scrollHorizontally="false"
android:scrollbarStyle="insideOverlay"
android:scrollbars="vertical"
android:overScrollMode="always" />
</LinearLayout>
有问题的控件是最后一个EditText,因为它是多行的,带有滚动。
我需要提供这一点,以便用户可以做一些(非常)基本的格式化。
有什么想法吗?
你使用了哪种虚拟键盘?我认为股票键盘不包含“TAB”字符。
如果您使用第三方键盘,请确保它是否输入了真正的制表符(ascii代码-61)或模拟类似PC的制表符行为(搜索并聚焦下一个编辑文本)
你应该这样检查。
@Override
public boolean onKeyUp(int keyCode, KeyEvent event)
{
switch(keyCode){
case KeyEvent.KEYCODE_TAB:
Toast.makeText(this,"TAB key triggered!",Toast.LENGTH_SHORT).show();
return true;
}
return super.onKeyUp(keyCode, event);
}
注意:我不是在回答你的问题,只是给出一个调试提示。
根据您的评论,“制表符”字符与“空格”字符没有太大区别。所以解决方法应该是扩大制表符宽度。
标签宽度=INDEX_CHAR*TAB_NUMBER
private static final String INDEX_CHAR="m";
private static final int TAB_NUMBER = 3;
public void applyTabWidth(Editable text, int start, int end) {
String str=text.toString();
float tabWidth=getPaint().measureText(INDEX_CHAR) * TAB_NUMBER;
while (start < end) {
int index=str.indexOf("\t",start);
if(index<0)
break;
text.setSpan(new CustomTabWidthSpan(Float.valueOf(tabWidth).intValue()) , index, index+1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
start = index+1;
}
}
自定义TabWidthSpan
class CustomTabWidthSpan extends ReplacementSpan
{
int tabWidth=0;
CustomTabWidthSpan(int tabWidth){
this.tabWidth=tabWidth;
}
@Override
public int getSize(Paint p1, CharSequence p2, int p3, int p4, Paint.FontMetricsInt p5)
{
return tabWidth;
}
@Override
public void draw(Canvas p1, CharSequence p2, int p3, int p4, float p5, int p6, int p7, int p8, Paint p9)
{
}
}
优化:
>
我选择不将替换span应用于整个字符串,而仅应用于每个制表符。
每次文本更改时,只在更改的文本中搜索选项卡字符。下面是如何应用TextWacher。
editText.addTextChangedListener(new TextWatcher(){
int start=0,end=0;
@Override
public void beforeTextChanged(CharSequence p1, int p2, int p3, int p4)
{
}
@Override
public void onTextChanged(CharSequence p1, int start, int before, int count)
{
this.start=start;
this.end=start+count;
}
@Override
public void afterTextChanged(Editable p1)
{
applyTabWidth(p1, start, end);
}
});
Ruby我已经开始在我的Ruby代码中插入不可编辑的文本,我觉得这很烦人。例如,这个简单的rSpec表达式: ...变成了这样: 另一个例子是: ...变成了这样: 如何关闭此功能?
我想在用户在EditText中键入文本时将文本放入我的应用程序中的某个字符串中,并使用它来生动地在活动上显示它(在不同的视图中...) - 就像谷歌的实时/即时搜索工作一样...
我正在开发一个Android聊天应用程序。一切运作良好,但除了一件事;我想设置一个布局的可见性消失,然后设置一个不同的布局可见时,用户开始输入编辑文本,就像在WhatsApp上实现的。但是我似乎想不明白。任何帮助都将不胜感激 基本上,我想做的是设置一个布局的可见性,该布局包含一个图像按钮,用于将图像上载到gone,然后显示一个布局,该布局包含一个图像按钮,用于在用户开始键入时将edittext中的
本文向大家介绍C# RichTextBox制作文本编辑器,包括了C# RichTextBox制作文本编辑器的使用技巧和注意事项,需要的朋友参考一下 本文利用一个简单的小例子【文本编辑器】,讲解RichTextBox的用法。 Windows窗体中的RichTextBox控件用于显示,输入和操作格式化的文本,RichTextBox除了拥有TextBox控件的所有功能外,还可以显示字体,颜色,链接,从文
如何创建具有文本限制的多行edittext?我设置了edittext的maxLength,但它使edittext成为单行,如果我将inputType添加到textMultiLine,则设置为actionDone的imeOptions将不会显示。我不想为maxLines属性设置静态值。 而且,当编辑文本达到其极限时,键盘仍然允许文本,这使得删除文本变得困难。如何解决这个问题?
我读了关于如何设置一个对象聚焦的问题,但是我似乎找不到任何一个答案来回答我想做的事情。 使用On Focus侦听器,我完成了以下操作: 我尝试了以下帖子中的建议: 我读了这篇文章,但使用这些建议似乎也不起作用:如何在创建和显示布局时设置视图的焦点? 我的目标是,当编辑文本焦点丢失时,如果给定的条目无效,我需要移回它。 此外,根据Bill Mote的建议,我还尝试了: **编辑**我甚至在reque