ListView/GridView 按住拖动黑线框/桌面背景透上来【已解决】


本文标签: GridView , listview , 黑线框

方法1:listView.setDividerHeight(0);
方法2:this.getListView().setDivider(null);
方法3:android:divider="@null"

方法4:setCacheColorHint(0);

android:cacheColorHint="#00000000" 设置其为透明! 默认为黑色!

===============================================================

   //解决ScrollView中顶部banner不置顶显示问题
   ScrollView sv = (ScrollView)findViewById(R.id.sv);
   sv.smoothScrollTo(0,0);

===============================================================

Android:键盘挡住输入框解决办法:
 getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE |
               WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);

XML:

 <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 按住拖动黑线框/桌面背景透上来【已解决】

你可能感兴趣的:(ListView,GridView,黑线框)