方法1:listView.setDividerHeight(0);
方法2:this.getListView().setDivider(null);
方法3:android:divider="@null" ide
方法4:setCacheColorHint(0); this
android:cacheColorHint="#00000000" 设置其为透明! 默认为黑色! .net
=============================================================== get
//解决ScrollView中顶部banner不置顶显示问题
ScrollView sv = (ScrollView)findViewById(R.id.sv);
sv.smoothScrollTo(0,0); io
=============================================================== 编译
Android:键盘挡住输入框解决办法:
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE |
WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN); List
XML: grid
<ScrollView android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<LinearLayout android:id="@+id/Relative"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="wrap_content"> 方法
。。。。。。
</LinearLayout>
</ScrollView>
==============================================================
Android:动态控制软键盘的弹出和收起:
this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
==============================================================
声明: 本文由( 张飞不张,文采横飞 )原创编译,转载请保留连接: ListView/GridView 按住拖动黑线框/桌面背景透上来【已解决】