使用水平滚动视图选项卡主机自动滚动以编程方式

发布于 2024-12-12 06:55:53 字数 180 浏览 1 评论 0原文

我正在使用 TabHost 开发一个示例应用程序,其中包含 Horizo​​ntalScrollView。这是我的问题:

  • 我有超过 10 个选项卡,当我单击任何选项卡时,它应该将重力设置为中心吗?我怎样才能克服这个问题。

提前致谢!!!

I am developing a sample application with TabHost, which is containing HorizontalScrollView. Here is my problem:

  • I have more than 10 tabs, when i click on any of the tabs it should set the gravity as center? How i can over come this issue.

Thanks in advance!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

血之狂魔 2024-12-19 06:55:53

这会涉及到一些计算。

基本上,您需要滚动到使元素居中的位置。

int scrollX = (button.getLeft() - (screenWidth/2))+(button.getWidth()/2);
hScrollView.scrollTo(scrollX,0);

button -> It is the button you are trying to center.

screenWidth -> Width of the screen.
int screenWidth = getWindowManager().getDefaultDisplay().getWidth();

hScrollView -> It is the horizontal scrollview.

即使使用此方法,您也无法将结束元素居中,因为滚动视图不会滚动到其边界之外。

This will involve some calculation.

Bsically you will need to scroll to the position to center a element.

int scrollX = (button.getLeft() - (screenWidth/2))+(button.getWidth()/2);
hScrollView.scrollTo(scrollX,0);

Where the

button -> It is the button you are trying to center.

screenWidth -> Width of the screen.
int screenWidth = getWindowManager().getDefaultDisplay().getWidth();

hScrollView -> It is the horizontal scrollview.

But even with this method, you will not be able to center the end elements as scrollviews will not scroll beyond its bounds.

脱离于你 2024-12-19 06:55:53
public void onTabChanged(String tabId) {
    for (int i = 0; i < tablist.length; i++) {
        if (tabId.contentEquals(tablist[i])) {
            HorizontalScrollView scroll = (HorizontalScrollView)findViewById(R.id.horScrollView);
            scroll.smoothScrollTo(((int)(getResources().getDimensionPixelSize(R.dimen.tab_width) * (i))), 0);
        } 
    }

我使用:实现 OnTabChangeListener。

public void onTabChanged(String tabId) {
    for (int i = 0; i < tablist.length; i++) {
        if (tabId.contentEquals(tablist[i])) {
            HorizontalScrollView scroll = (HorizontalScrollView)findViewById(R.id.horScrollView);
            scroll.smoothScrollTo(((int)(getResources().getDimensionPixelSize(R.dimen.tab_width) * (i))), 0);
        } 
    }

I used: implements OnTabChangeListener.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文