0
我怎麼能得到看起來像上傳圖片的按鈕(Picture)這裏是整個按鈕,裏面是矢量圖標(xml)。背後的圖標必須與文字背後的顏色不同背景顏色不同背景的Android按鈕
我怎麼能得到看起來像上傳圖片的按鈕(Picture)這裏是整個按鈕,裏面是矢量圖標(xml)。背後的圖標必須與文字背後的顏色不同背景顏色不同背景的Android按鈕
<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>