Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了如何设置android Horizo​​ntalScrollView从右到左的行为(默认选中的选项卡从右侧,而不是左侧)大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
如何设置Horizo​​ntalScrollView以从右向左的方式运行?
认行为是显示的第一个选项卡(认选项卡)来自左侧.
我希望选项卡反向排序,以便一个认”选项卡位于屏幕的右侧.

我怎么做?
我使用layout_gravity但它不起作用..

这是我的布局代码,包含tabhost和Horizo​​ntalScrollView:

<TabHost xmlns:android="http://scheR_57_11845@as.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <horizontalscrollview
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:fillViewport="true"
        android:scrollbars="none">

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
    </horizontalscrollview>

    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />
</LinearLayout>

</TabHost>

解决方法

一个有效的解决方法

final horizontalscrollview view = (horizontalscrollview) findViewById(R.id.scroller);
        view.postDelayed(new Runnable() {

            @Override
            public void run() {
                view.fullScroll(horizontalscrollview.FOCUS_RIGHT);
            }
        },10);

这个想法是程序化滚动需要延迟才能工作.

大佬总结

以上是大佬教程为你收集整理的如何设置android Horizo​​ntalScrollView从右到左的行为(默认选中的选项卡从右侧,而不是左侧)全部内容,希望文章能够帮你解决如何设置android Horizo​​ntalScrollView从右到左的行为(默认选中的选项卡从右侧,而不是左侧)所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。