我想將TextView
放入CustomView
。我已經通過使用findViewById
。那TextView
我已經直接插入到了xml中。現在我想在觸摸事件發生時添加文本。 在ViewActivity
裏面我放了這個。CustomView中的TextView
public void getTextv(TextView tv)
{
tv1=tv;
}
int hit;
public void setText()
{
if(touch==true)
tv1.setText(hit);
}
裏面的主我已經把ViewActivity.getTexttv(tv);
然後,我就只要加入文字錯誤。
什麼是錯誤您收到? –