Found 1966 Articles for Apps/Applications

How to execute Async task repeatedly after fixed time intervals in Android?

Azhar
Updated on 03-Jul-2020 12:48:21

613 Views

This example demonstrates how do I execute AsyncTask repeatedly after fixed time intervals in android.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/layout/activity_main.xml.         Step 3 − Add the following code to src/MainActivity.javaimport androidx.appcompat.app.AppCompatActivity; import android.os.AsyncTask; import android.os.Bundle; import android.os.Handler; import android.widget.Toast; public class MainActivity extends AppCompatActivity {    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       setContentView(R.layout.activity_main);       RunTask();    }   ... Read More

How to create a smooth image rotation in android?

Azhar
Updated on 03-Jul-2020 12:48:55

179 Views

This example demonstrates how do I create a smooth image rotation in android.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/layout/activity_main.xml.         Step 3 − Create a new folder named “anim” in the res. Right click on anim folder and create an animation resource file (rotate.xml) and add the following code −     Step 3 − Add the following code to src/MainActivity.javaimport android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.view.animation.Animation; ... Read More

How to change the position of the dialog on Screen android?

Azhar
Updated on 03-Jul-2020 12:49:28

1K+ Views

This example demonstrates how do I change the position of the dialog on Screen in android.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/layout/activity_main.xml. Step 3 − Add the following code to src/MainActivity.javaimport android.app.AlertDialog; import android.content.DialogInterface; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.Gravity; public class MainActivity extends AppCompatActivity {    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       setContentView(R.layout.activity_main);       AlertDialog.Builder builder = new AlertDialog.Builder(this);     ... Read More

How can I set an icon for my Android application?

Azhar
Updated on 03-Jul-2020 12:50:50

4K+ Views

This example demonstrates how set an icon for my Android application .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  − Further follow the path to reach the desired folder to add icon (app → res → mipmap).Step 3 - Add you app icon. You can just simply copy and paste the image in mipmap folder.Step 4 - After placing the image in the mipmap folder. You need to rename the default icon name to your icon image name.Step 5  − Add the following ... Read More

How do I create a splash screen on Android App?

Azhar
Updated on 03-Jul-2020 12:51:30

640 Views

This example demonstrates how to pass data between activities.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/layout/activity_main.xml     Step 3  − Add the following code to src/MainActivity.javapackage com.example.sample; import android.content.Intent; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import static java.lang.Thread.sleep; public class MainActivity extends AppCompatActivity {    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       startActivity(new Intent(MainActivity.this, SecondActivity.class));       try {          sleep(3000);     ... Read More

How to programmatically take a screenshot on iOS?

Sadiqaadil
Updated on 11-Sep-2019 08:58:56

795 Views

In this post we will learn how to take screen shot programmatically in iOS.We will add on textField where we will change the value, take the screen shot by press of a button and then show the screen shot in an imageView which we will place just below the button itself.Remember that you can add this functionality on long press or any other gesture, and even save the image if you want. But right now we will just focus on capturing the screen shot and showing it on an image view.So let’s get startedStep 1 − Open Xcode → New ... Read More

How to repeat a task repeatedly after a regular interval in Swift(iOS)?

Sadiqaadil
Updated on 11-Sep-2019 08:57:55

814 Views

In this post we will learn how to repeat a task after a regular interval.In this example we will update a label after a particular interval of time repeatedly.In iOS we user Timer to achieve this task. Lets get startedStep 1 − Open Xcode → New Project → Single View Application → Let’s name it “Timer”Step 2 − Open Main.storyboard and add a label as shown below.Step 3 − Attach one @IBOutlet for the bottom label. Name it timerLabelStep 4 − We will show the seconds since when the app is launched on the label. So, declare two variables in ... Read More

Android bundle to pass data between activities?

Azhar
Updated on 03-Jul-2020 12:40:01

189 Views

This example demonstrates how to pass data between activities.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/layout/activity_main.xml.                           Step 3  − Add the following code to res/layout/activity_second.xml.               Step 4  − Add the following code to src/MainActivity.javapackage com.example.sample; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.text.TextUtils; import android.view.View; import android.widget.Button; import android.widget.EditText; import ... Read More

How to make the phone call in iOS 10 using Swift?

Sadiqaadil
Updated on 11-Sep-2019 08:53:12

205 Views

In this post we will learn how to load PDF in UIWebView.Loading PDF in WebView is simple. Just follow the following steps.Step 1 − Open Xcode → New Project → Single View Application → Let’s name it “PDFInWebView”Step 2 − Open Main.storyboard and add UIWebView as shown belowStep 3 − Create @IBOutlet for the UIWebView, name it webview.Step 4 − Add as sample PDF project. We will load this PDF in webivew. I am adding a PDF file named sample PDF.Step 5 − Add the following lines in viewDidLoad method of ViewControllerif let pdf = Bundle.main.url(forResource: "sample", withExtension: "pdf", subdirectory: ... Read More

How to pass data between Activities on Android application?

Azhar
Updated on 07-Jul-2020 14:42:22

99 Views

This example demonstrates how to pass data between Activities on Android application.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/layout/activity_main.xml.                                                                                                   ... Read More

Advertisements