方法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 按住拖動黑線框/桌面背景透上來【已解決】