1

Androidの表示リストビューで下線を削除する方法を知りたいのですが、誰か助けてもらえますか?

これは私のリストビューxmlコードです

<?xml version="1.0" encoding="utf-8"?>
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list_mini"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:shadowColor="#ffffff"
android:gravity="center_vertical"
android:paddingLeft="6dip"
android:paddingRight="6dip"
android:textColor="#000000"
android:textSize="9px"
android:background="#fff"
/>
4

2 に答える 2

9

この仕切りタグを追加してみてください:

<ListView
android:everythingelse = "yourStuff"
android:divider="#00000000" <--- this guy
/>

ListView要素を含むXMLファイルに

于 2012-06-27T03:41:01.317 に答える