TextView - setCustomSelectionActionModeCallback如何在为多个TextView选择文本时创建ActionMode.Callback

时间:2015-02-19 13:57:38

标签: android textview custom-controls

我的系统中有几个 TextView ,其中大多数我必须调用自定义ActionMode.Callback

问题是如何使用自定义ActionMode.Callback创建TextView?

今天我的代码是这样的

mTxOne.setCustomSelectionActionModeCallback(new MarkTextSelectionActionModeCallback());
 mTxTwo.setCustomSelectionActionModeCallback(new MarkTextSelectionActionModeCallback());
...

2 个答案:

答案 0 :(得分:1)

public class TextViewA extends TextView {

    @Override
    protected void onCreateContextMenu(ContextMenu menu) {
        super.onCreateContextMenu(menu);
        setCustomSelectionActionModeCallback(new MarkTextSelectionActionModeCallback());
    }



public TextViewA(Context context) {
    super(context);
}
public TextViewA(Context context,AttributeSet attrs) {
    super(context,attrs);
}
public TextViewA(Context context, AttributeSet attrs, int defStyle){
    super(context, attrs, defStyle);
}

这里是xml

 <RelativeLayout      xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

  <br.com.vrbsm.textviewexample.TextViewA
      android:id="@+id/textView2" 
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:textIsSelectable="true"
      android:textSize="12dp"
      />
</RelativeLayout>

这里主要

public class MainActivity extends Activity{
//  
    private TextViewA textview;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_activity);

        textview = (TextViewA)findViewById(R.id.textView2);
        textview.setText("Android is crazy");

    }


public class MarkTextSelectionActionModeCallback implements Callback {
.
.
.}

答案 1 :(得分:0)

试试这个:

 public class CustomActionModeTextView extends TextView{

       //...implement your constructors as you may want to use...//
       @Override
       public ActionMode.Callback getCustomSelectionActionModeCallback (){
          return new MarkTextSelectionActionModeCallback();
        }


 }

创建您自己的TextView并覆盖方法getCustomSelectionActioModeCallback,以便始终返回自定义操作模式回调的实例。这样您就不必每次都在视图中进行设置。

<强>记住

  • 在XML布局文件中使用自定义类;
  • 投射时,请将广播投射到自定义类,而不是TextView;
  • 您可能需要考虑在班级中保留对自定义回调的引用。您可以在某些constructor期间对其进行初始化,然后使用get方法将其返回。这只是为了避免在每次方法调用时创建新实例。