本文介绍了单击TextView打开新活动并跳转到特定ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个带有onClick
功能的TextView
活动.单击TextView
后,它应该打开一个新活动,并跳转到新打开的活动中的特定id
(例如另一个TextView
).有可能这样做吗?
I have an activity with a TextView
that has an onClick
function.After I click the TextView
it should open a new activity and jump to a specific id
(of e.g. another TextView
) in the newly opened activity. Is there a possibility to do this?
推荐答案
这就是我需要的:
scrollview.post(new Runnable() {
@Override
public void run() {
scrollview.smoothScrollTo(0, some_random_view_id.getTop());
}
});
这篇关于单击TextView打开新活动并跳转到特定ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!