Откуда появляется дополнительное пространство вокруг моей кнопки? - PullRequest
5 голосов
/ 13 января 2011

У меня есть простая раскладка:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent">
    <LinearLayout android:orientation="horizontal"
                  android:layout_width="fill_parent"
                  android:layout_height="wrap_content"
                  android:padding="5dp"
                  android:id="@+id/acquiring_signal_layout">
        <ProgressBar android:id="@+id/ProgressBar01"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"/>
        <TextView android:id="@+id/acquiring_signal_label"
                  android:text="@string/acquiring_signal"
                  android:layout_width="fill_parent"
                  android:textAppearance="?android:attr/textAppearanceLarge"
                  android:layout_height="wrap_content"
                  android:layout_gravity="center_vertical"
                  android:paddingLeft="5dp"/>
    </LinearLayout>
    <com.google.android.maps.MapView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/mapview"
        android:clickable="true"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:apiKey="..."
        android:layout_weight="1"/>
    <Button
        android:text="@string/send_button"
        android:id="@+id/SendButton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
    </Button>
</LinearLayout>

Работает нормально, за исключением того, что при рендеринге кнопка внизу имеет несколько (примерно 5, я полагаю) пикселей черного поля / пространства вокруг нее. Установка поля кнопки, кажется, не имеет никакого влияния. Что происходит?

Ответы [ 2 ]

6 голосов
/ 13 января 2011

Это отрисовки, которые используются для фона кнопки. Есть несколько пикселей, которые прозрачны в кнопке drawable. если вы установите рисование самостоятельно, вы заметите, что «пустое пространство» отсутствует.

0 голосов
/ 13 января 2011

Вы пытались установить отрицательное поле для кнопки?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...