我有以下情况:
我正在使用导航抽屉让用户轻松地在不同主题之间导航。
你可以在这里找到一张图片:
https://drive.google.com/file/d/0B2gMUEFwlGRfSHRzVlptYmFQTXc/edit?usp=sharing
单击标题时,如常规,仅使用片段和布局文件替换主要内容视图。 但是,当用户点击子标题(如游戏性)时,布局会发生变化,并且应该向下滚动到布局中的特定视图。
因此在我的片段类中,我使用的是“onViewCreated”方法和由ScrollView提供的smoothScrollTo方法。 ScrollView和RelativeLayout都不为null,并设置为正确的id,在“onCreateView”中设置
Codesnippets:
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
if (getArguments().getBoolean(ARG_BOOL)) {
scrollView = (ScrollView)getView().findViewById(scrollID);
relativeLayout = (RelativeLayout)getView().findViewById(relativeID);
((ScrollView)getView().findViewById(scrollID)).smoothScrollTo(
0, (getView().findViewById(relativeID)).getLeft());
Toast.makeText(getApplicationContext(), "SCROLL",Toast.LENGTH_SHORT).
show();
}
}
问题是,当toast被执行时,它没有执行“smoothScrollTo”方法。
这里我调用片段(布尔滚动用于控制smoothScrollTo方法):
private void selectItem(int Id, boolean scroll) {
Fragment fragment = new ContentFragment();
Bundle args = new Bundle();
args.putBoolean(ContentFragment.ARG_BOOL, scroll);
args.putInt(ContentFragment.ARG_ITEM_ID, Id);
fragment.setArguments(args);
// Insert the fragment by replacing any existing fragment
FragmentManager fragmentManager = getFragmentManager();
fragmentManager.beginTransaction()
.replace(R.id.content_frame, fragment)
.commit();
// Highlight the selected item, update the title, and close the drawer
TextView textView = (TextView) findViewById(Id);
getActionBar().setTitle(textView.getText());
mDrawerLayout.closeDrawer(mDrawerList);
}
感谢您的帮助; - )
修改 的 SOLUTION:
if (getArguments().getBoolean(ARG_BOOL)) {
getView().findViewById(scrollID).post(new Runnable() {
@Override
public void run() {
((ScrollView) getView().findViewById(scrollID)).
smoothScrollTo(0, (getView().findViewById(relativeID)).getTop());
}
});
}
答案 0 :(得分:14)
尝试在调用视图的post
时调用smoothScrollTo
方法:
ScrollView scrollView = (ScrollView)getView().findViewById(scrollID);
scrollView.post(new Runnable() {
@Override
public void run() {
scrollView.smoothScrollTo(0,(getView().findViewById(relativeID)).getTop());
}
});