【发布时间】:2016-02-14 17:37:18
【问题描述】:
我一直在尝试启用水平滚动条,但没有成功。这个方法
public void onViewCreated(View view, Bundle savedInstanceState){
super.onViewCreated(view, savedInstanceState);
getListView().setHorizontalScrollBarEnabled(true);
}
但它只是不工作。任何提示将不胜感激。
【问题讨论】:
-
你试过在xml中设置吗?
-
我正在使用
ListFragment,所以我没有夸大自定义视图。onCreateView()方法返回super.onCreate...并且我如上检索创建的ListView。 @Andy Joyce 顺便谢谢你的建议
标签: android listview android-listfragment horizontal-scrolling