Android按钮有不同的背景

时间:2017-07-14 12:11:02

标签: android button vector

我怎么能得到看起来像上传图片的按钮(Picture)这里是整个按钮,里面是矢量图标(xml)。图标背后的背景颜色必须与文字背后的颜色不同

1 个答案:

答案 0 :(得分:0)

<LinearLayout
                    android:layout_width="match_parent"
                    android:orientation="horizontal"
                    android:layout_height="wrap_content">

                    <ImageView
                        android:layout_width="wrap_content" //Set Image here
                        android:layout_height="wrap_content" />
                    <Button
                        android:layout_width="wrap_content"
                        android:text="SomeText"
                        android:layout_height="wrap_content" />
                </LinearLayout>