【问题标题】:Cut copy paste option are not visible for CustomEditText in Android剪切复制粘贴选项对于 Android 中的 CustomEditText 不可见
【发布时间】:2015-03-27 10:23:27
【问题描述】:

我已经根据我的要求实现了一个自定义编辑文本小部件。我只是在 EditText 字段中设置可绘制对象和自定义字体。

当我对文本执行长按时,我没有选择使用剪切、复制、粘贴选项来编辑文本?我该如何启用它?下面是我的元素属性。

<CustomEditText
            android:id="@+id/customEditText"
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_gravity="center_vertical"
            android:layout_marginLeft="10dp"
            android:layout_weight="8"
            android:background="@color/blackColor"
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:gravity="center_vertical"
            android:hint="@string/customHintMessage"
            android:inputType="textCapSentences|textMultiLine|textLongMessage"
            android:maxLines="3"
            android:paddingLeft="5dp"
            android:scrollbars="vertical"
            android:singleLine="false"
            android:textColor="@color/lightWhiteColor"
            android:textSize="@dimen/editText_font_size"
            app:typeface="@string/regularFont" >
</customEditText>

【问题讨论】:

    标签: android android-activity


    【解决方案1】:

    尝试添加

    android:longClickable="true"
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2011-12-18
      • 1970-01-01
      • 2012-05-07
      • 1970-01-01
      • 1970-01-01
      • 2010-12-10
      • 2013-05-13
      相关资源
      最近更新 更多