我的系统中有几个TextView,其中大多数我必须调用我的自定义ActionMode.Callback
。
问题是如何使用自定义ActionMode.Callback
创建TextView?
今天我的代码就是这样
mTxOne.setCustomSelectionActionModeCallback(new MarkTextSelectionActionModeCallback());
mTxTwo.setCustomSelectionActionModeCallback(new MarkTextSelectionActionModeCallback());
...
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 {
.
.
.}
试试这个:
public class CustomActionModeTextView extends TextView{
//...implement your constructors as you may want to use...//
@Override
public ActionMode.Callback getCustomSelectionActionModeCallback (){
return new MarkTextSelectionActionModeCallback();
}
}
创建自己的TextView
并覆盖方法getCustomSelectionActioModeCallback以始终返回自定义操作模式回调的实例。这样您就不必每次在视图中设置它。
记得
TextView
;constructor
中初始化它并以get
方法返回它。这只是为了避免在每个方法调用上创建新实例。