-1

私は次のようにデザインしたい:削除ボタンパディング

https://i.stack.imgur.com/DIo1U.png

だから、基本的に私は非常に小さいパディングと四角いボタンが欲しいです。しかし、私は何を得ることはこれです:

https://i.stack.imgur.com/16bib.png

「+」記号はもはや中心にされていない、私は高さを上げるか、フォントサイズを小さくすれば、「+」記号は再び中央に出ました。しかし、これは私が探しているものではない、私は '+'記号を大きくするためにそのボタンのパディングを減らす方法を探しています。

ソースコード:

<Button 
    android:id="@+id/eenCentMin" 
    android:layout_width="30dp" 
    android:layout_height="30dp" 
    android:layout_gravity="center_vertical" 
    android:layout_marginRight="5dp" 
    android:background="@drawable/button_geld_tellen" 
    android:onClick="onButtonGeldTellenClick" 
    android:text="+" 
    android:textColor="@color/geldTellenTextColor" 
    android:textSize="30sp" 
    android:textStyle="bold"/> 

私はそれを達成できる方法上の任意の提案?

答えて

0

これはANS試してみてください.............. テキストはテキストは私がこれを行うと、私は次取得

<Button 
     android:id="@+id/eenCentMin" 
     android:layout_width="warp_content" 
     android:layout_height="warp_content" 
     android:layout_gravity="center_vertical" 
     android:layout_marginRight="5dp" 
     android:background="@drawable/button_geld_tellen" 
     android:onClick="onButtonGeldTellenClick" 
     android:text="+" 
     android:textColor="@color/geldTellenTextColor" 
     android:textSize="30sp" 
     android:textStyle="bold" 
     android:padding="5dp" //as need set 
    /> 
+0

を揃える使用して中央に行います。https:// prnt.sc/h6725m、これは明らかに大きすぎます。パディングを減らすと、これを減らすことはできません。 – Wannakiwi

+0

android:layout_width = "as like need 30dp 30px" –

+0

アンドロイド:layout_height = "30dp"を必要に応じて設定しました –