banner



design background for android app

How to set an Android App's background image repeated?

Android Apps/Applications Mobile Development



This example demonstrates about How to set an Android App's background image repeated

Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.

Step 2 − Add the following code to res/drawable/app_background.xml.

<?xml version="1.0" encoding="utf-8"?> <bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:src="@drawable/image1" android:tileMode="repeat" />

Step 2 − Add the following code to res/values/styles.xml.

<resources>    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">       <item name="colorPrimary">@color/colorPrimary</item>       <item name="colorPrimaryDark">@color/colorPrimaryDark</item>       <item name="colorAccent">@color/colorAccent</item>       <item name="android:windowBackground">@drawable/app_background</item>    </style> </resources>

Step 2 − Add the following code to res/layout/activity_main.xml.

<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:layout_margin="16dp" />

Step 3 − Add the following code to src/MainActivity.java

package app.com.sample; import android.os.Bundle; import androidx.appcompat.app.AppCompatActivity; public class MainActivity extends AppCompatActivity {    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       setContentView(R.layout.activity_main);    } }

Step 4 − Add the following code to androidManifest.xml

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="app.com.sample">    <application       android:allowBackup="true"       android:icon="@mipmap/ic_launcher"       android:label="@string/app_name"       android:roundIcon="@mipmap/ic_launcher_round"       android:supportsRtl="true"       android:theme="@style/AppTheme">       <activity android:name=".MainActivity">          <intent-filter>             <action android:name="android.intent.action.MAIN" />             <category android:name="android.intent.category.LAUNCHER" />          </intent-filter>       </activity>    </application> </manifest>

Let's try to run your application. I assume you have connected your actual Android Mobile device with your computer. To run the app from android studio, open one of your project's activity files and click Run  icon from the toolbar. Select your mobile device as an option and then check your mobile device which will display your default screen −

Click here to download the project code.

raja

Azhar

Published on 31-Jul-2019 11:32:54

  • Related Questions & Answers
  • How to set background color of a view in Android App
  • How to play background music in Android app?
  • How to resize Image in Android App?
  • How to set background image of a webpage?
  • How to load and display an image in ImageView on Android App?
  • Set the background image of an element with CSS
  • How to set the background image for an element with JavaScript DOM?
  • How can I set an ImageView's width and height programmatically in Android?
  • How to resize Image in Android App using Kotlin?
  • How to set background image in CSS using jQuery?
  • How do I redraw an image using Python's Matplotlib?
  • How to set background color of an android activity to yellow Programatically?
  • How to set an element's display type with JavaScript?
  • How to set locale programmatically in android app?
  • How to set a background image to a JavaFX chart?

Previous Page Print Page

Next Page  

Advertisements

design background for android app

Source: https://www.tutorialspoint.com/how-to-set-an-android-app-s-background-image-repeated

Posted by: robeyandeavy1951.blogspot.com

0 Response to "design background for android app"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel