【发布时间】:2013-04-07 01:17:18
【问题描述】:
我在视图中使用HorizentalScrollView。我在运行时添加TextView。我用horView.smoothScrollTo(x,y);它适用于模拟器。但它不会在 HTCDesire 2.2 处滚动?任何想法?这是我的代码。
horView.smoothScrollTo(num, 0);
<HorizontalScrollView
android:id="@+id/cate_head"
android:scrollbars="none"
android:foregroundGravity="fill_horizontal"
android:layout_width="fill_parent"
android:paddingTop="6dip"
android:background="@drawable/slider_background"
android:focusable="true"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/cate_head_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal"
android:orientation="horizontal"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip">
</LinearLayout>
</HorizontalScrollView>
【问题讨论】:
标签: android android-widget android-layout