如何刪除Android按鈕正在使用的默認保證金?我希望按鈕具有全部寬度(在屏幕邊緣和按鈕之間根本沒有空間),並且它們之間沒有空間。我沒有設置任何填充,但他們似乎有一個。刪除Android按鈕的保證金
我使用「Theme.AppCompat.Light.NoActionBar」作爲我的應用程序主題父項。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
這是來自按鈕背景,最有可能的。 – CommonsWare
您是否使用過提供的解決方案之一? – Geoff
試過他們,但他們不工作,因爲我想他們。我結束使用自定義漣漪效應作爲背景從這裏:http://stackoverflow.com/a/26349261/2456568 – Mike