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