0

私に起こっていることはかなりトリッキーです...リストビューオブジェクトのアダプターのレイアウトとしてこのxmlファイルがあります:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    `android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/exBackGround"
    android:orientation="vertical" >
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:background="@color/exBackGround" >
            <ImageView
                android:id="@+id/imgIcon"
                android:layout_width="wrap_content"
                android:layout_height="fill_parent"
                android:background="@color/exBackGround"
                android:src="@drawable/ic_launcher" />
            <TextView
                android:id="@+id/lblFolderName"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="@color/exBackGround"
                android:gravity="center_vertical"
                android:text="Medium Text"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textColor="@color/exForeGround" />
            <TextView
                android:id="@+id/lblNumber"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:background="@color/exBackGround"
                android:gravity="center_vertical"
                android:paddingRight="5dp"
                android:text="100"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textColor="@color/exForeGround" />
        </LinearLayout>
        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:background="@color/exGradEnd" >
        </FrameLayout>
</LinearLayout>

理由がわかりません。このレイアウトの結果、期待どおりの結果が得られ、上部に黒い線があり、どこから来たのかわかりません。残念ながら、新しいユーザーとして、画像を投稿できません。申し訳ありません。

4

1 に答える 1

0

わかりました問題は解決しました。他の誰かが将来それを必要とする場合に備えて、私は自分自身に自動応答します。Eclipse のグラフィカル レイアウトに見られる黒い線は偽物で、一番上にある「ディスプレイの種類」の選択から来ています。最終的なアプリで見た黒い線は、ListView のデフォルトの仕切りでした。それを消すために、lv.setDividerHeight(0) を設定しました。

于 2013-06-04T07:39:36.517 に答える