Anvi Jain has Published 569 Articles

Build Horizontal Navigation Bar with Inline List Items in CSS

Anvi Jain

Anvi Jain

Updated on 02-Jul-2020 14:04:12

873 Views

Use Inline List Items to build a horizontal navigation bar. Set the elements as inline.ExampleYou can try to run the following code to create horizontal navigation bar:Live Demo                    ul {             list-style-type: none; ... Read More

How can I send mail from an iPhone application?

Anvi Jain

Anvi Jain

Updated on 30-Jun-2020 05:25:17

202 Views

To send an email from our application we'll need to use URL Schemes and some action on event of which the email will be sent. We can not actually send email from the application, unless it is an mailing application and we use MessageUI framework of iOS, but we can ... Read More

How to create a WebView in iOS/iPhone?

Anvi Jain

Anvi Jain

Updated on 30-Jun-2020 05:24:12

569 Views

To create a web view in iOS we'll use Webkit framework of iOS. Previously UIWebView was used to create web views but that has been deprecated now.We'll use WebKit View in this project.Create a new project and from object library drag and drop webKit View to the ViewController.Give constraints as ... Read More

Applications of 8212 in mode 0

Anvi Jain

Anvi Jain

Updated on 30-Jun-2020 05:18:41

259 Views

We use Intel 8212 in variety of applications. Let us discuss applications of 8212 in Mode 0It acts as buffer which is gatedBus driver which is Bi-directionalFor Interrupting the input portTo supply of eight instructions based on RST.Intel 8212 as gated buffer: A weak logic signal is converted to a ... Read More

How to use set the priority for a thread in android?

Anvi Jain

Anvi Jain

Updated on 29-Jun-2020 14:57:41

875 Views

Before getting into an example, we should know what thread is. A thread is a lightweight sub-process, it going to do background operations without interrupt to ui. This example demonstrate about How to use set the priority for a thread in android.Step 1 − Create a new project in Android ... Read More

How to create a thread in android?

Anvi Jain

Anvi Jain

Updated on 29-Jun-2020 14:55:50

6K+ Views

Before getting into an example, we should know what thread is. A thread is a lightweight sub-process, it going to do background operations without interrupt to ui. This example demonstrate about How to create a thread in android.Step 1 − Create a new project in Android Studio, go to File ... Read More

Check if string contains special characters in Swift

Anvi Jain

Anvi Jain

Updated on 29-Jun-2020 14:04:33

3K+ Views

To check if a string contains a special character in swift we can use conditionals like if else or switch but that would need a lot of conditions to be executed, making programming as well as execution time consuming. So in this example we’ll see how to do the same ... Read More

Use of 8259 in an 8086-based system

Anvi Jain

Anvi Jain

Updated on 29-Jun-2020 14:00:58

2K+ Views

The interrupt requests are accepted by 8259 from eight interrupting devices on the pin ranging fromIR0 toIR7. After that, it identifies the priority interrupt having the highest request from the inputs which are active. It is possible for us to configure the 8259 for the mode of operation of "fixed ... Read More

How to use string buffer in android?

Anvi Jain

Anvi Jain

Updated on 29-Jun-2020 13:51:26

845 Views

Before getting into example, we should know what string buffer is. StringBuffer class is used to create mutable string and it is thread safe. This example demonstrate about How to use string buffer in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project ... Read More

How to get thread group information in android?

Anvi Jain

Anvi Jain

Updated on 29-Jun-2020 13:47:36

286 Views

Before getting into an example, we should know what thread is. A thread is a lightweight sub-process, it going to do background operations without interrupt to ui. This example demonstrate about How to get thread group information in android.Step 1 − Create a new project in Android Studio, go to ... Read More

Advertisements