Я создал кнопку в фотошопе CS6 и сохранил ее как изображение в формате png. При попытке добавить его в Android Studio в качестве imageView или imageButton, он включает в себя цвет фона. Я пытался android:backgroud="@android:color/transparent"
, но не повезло.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:id="@+id/screenTextView"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_weight="1"
android:background="#BDBDBD"
android:ems="10"
android:fadingEdge="none"
android:hint="0"
android:inputType="none"
android:textAlignment="viewEnd"
android:textSize="30sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<ImageButton
android:id="@+id/imageButton"
android:layout_width="0dp"
android:layout_height="160dp"
android:layout_weight="1"
android:background="@android:color/transparent"
app:srcCompat="@drawable/buttonn1" />
</LinearLayout>
РЕДАКТИРОВАТЬ: https://github.com/Gamer1989/project/issues/1 Вы можете увидеть изображения здесь.