background image android studio code example
Example 1: how to make background image transparent in android studio
android:backgroundTint="#80FFFFFF"
android:backgroundTintMode="src_over"
>>for setting background as transparent in android studio(only bg)
android:alpha="0.4"
>>for all views
Example 2: imageview on background android
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="#000000" >
<ImageView
style="@style/BackGroundImageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="42dp"
tools:ignore="ContentDescription" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical" >
</LinearLayout>
</RelativeLayout>