我在android中使用canvas实现pagecurl效果现在我必须在同一个画布上实现文本到语音功能。在单个ontouch事件上有两个不同的功能..现在我实现了pagecurl效果onTouch现在我很困惑得到画布上的文字..
canvas.drawText("Hello world this is experiment", 300,400 , paint);
在我的应用程序中,文本将动态来自sqlite ..是否有任何方法可以在触摸屏上检测文本。
答案 0 :(得分:1)
当你在画布上添加任何文字时,将该文字放在Rect()
在Canvas上设置此Rect()
就像这样。
protected void onDraw(Canvas canvas){
final String s = "Hello. I'm some text!";
Paint p = new Paint();
Rect bounds = new Rect();
p.setTextSize(60);
p.getTextBounds(s, 0, s.length(), bounds);
float mt = p.measureText(s);
int bw = bounds.width();
Log.i("LCG", String.format(
"measureText %f, getTextBounds %d (%s)",
mt,
bw, bounds.toShortString())
);
bounds.offset(0, -bounds.top);
p.setStyle(Style.STROKE);
canvas.drawColor(0xff000080);
p.setColor(0xffff0000);
canvas.drawRect(bounds, p);
p.setColor(0xff00ff00);
canvas.drawText(s, 0, bounds.bottom, p);
}
&安培;您可以轻松地在矩形上检测到 onTouchevent 上的Rect()
文本。
了解更多关于画布请参考:
http://developer.android.com/reference/android/graphics/Canvas.html