एंड्रॉइड में बटन के चारों ओर पैडिंग कैसे निकालें?
मेरे Android एप्लिकेशन में, मेरा यह लेआउट है: <?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="match_parent" android:orientation="vertical"> <fragment android:id="@+id/map" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" class="com.google.android.gms.maps.SupportMapFragment"/> <Button android:id="@+id/button_back" android:layout_width="fill_parent" android:layout_height="wrap_content" android:onClick="CloseActivity" android:padding="0dp" android:text="@+string/back" /> </LinearLayout> पूर्वावलोकन और फोन पर, ऐसा दिखता है: जैसा कि आप नीचे क्षेत्र में बटन पर देख सकते हैं, …