2

プログレスバーが直線ではない理由を誰か説明してもらえますか (下の写真)。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<ProgressBar android:id="@+id/progressbar"
    style="?android:attr/progressBarStyleHorizontal"
    android:layout_width="fill_parent"
    android:layout_height="25px"
    android:progress="50"
/>

<ListView
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:drawSelectorOnTop="false"
/>
</LinearLayout>

ここに画像の説明を入力

4

1 に答える 1

0

あなたが設定した:

android:layout_height="25px"

これは 25 ピクセルを意味し、ほとんどのデバイスでは通常 3 ミリ未満です。

元:

800 ピクセルと 8 cm の画面 -> 8 / 800 = 0.01 cm = 0.1 mm 25 ピクセル = 2.5 ミリ

よろしく。

于 2012-11-30T01:38:24.533 に答える