Wednesday, 16 November 2022

Kwiqshop App Website

 


Kwiqshop App Website describes in detail, the kwiqshop  

e-commerce App.

Friday, 4 November 2022

The Advantages of Ecommerce for a Business Con't:

 


Low costs:

The fact that creating a website is always less expensive than opening a physical store is one of the major advantages of e-commerce. You are not required to supply your business, pay rent, or engage numerous staff members to operate there. Additionally, marketing and promotion tactics are inexpensive.

The lack of a middleman lowers the cost price to a greater extent, which is one of the key benefits of e-commerce. The portal can generate an efficient supply chain because a direct connection between buyer and seller is established.

Additionally, the internet portal is automated and mechanized, which helps save a significant sum of money. Yes, if you want a customized website, you will have to make a minor sacrifice, but you already have a consumer base of compulsive online shoppers.

Saturday, 29 October 2022

The Advantages of Ecommerce for a Business:



Introduction:

E-commerce is one of the world's fastest growing retail industries. The advancement of science and technology, as well as the widespread availability of internet access, has had a direct impact on consumer attitudes.

The majority of them are simply not interested in spending hours in shopping malls exploring a variety of goods. The younger generation today prefers to shop at their convenience rather than following the guidelines of stores that have set hours of operation. E-commerce is seen as a potent tool that has aided in the growth of internet commerce. Daily transactions on various e-commerce portals total close to 1.2 million.

Without the help of the middleman, it has been successful in connecting the customer and seller to a single platform. Because the internet market is open around-the-clock, convenience is one of the key factors contributing to its appeal. As a result of the companies' ability to make cost savings, it is also quicker and less expensive.

Kwiqshop App is an Android App which enables Users to create accounts. These network of Users, can post items on their page and sell. At the same time, they can also buy products posted by others. For more information on the app please visit Kwiqshop App Website.



 

Wednesday, 2 February 2022

Android AlertDialog Example using kotlin Programming language.

 This example shows how to use Android Studio and Kotlin to develop an AlertDialog in Android.



Step 1 − Create a new project in Android Studio by going to File New Project and filling in all of the necessary details.

Step 2 − In res/layout/activity main.xml, add the following code.

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="98dp"
        android:textAlignment="center"
        android:textColor="#EA0B0B"
        android:textSize="50sp"
        android:text="@string/alertdialog_example_using_kotlin"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

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

package com.alfrosoft.alertdialogexample

import android.content.DialogInterface
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import androidx.appcompat.app.AlertDialog

class MainActivity : AppCompatActivity() {

    var alertDialog: AlertDialog? = null

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        createDialog()
    }

    private fun createDialog() {
        val alertDialogBuilder = AlertDialog.Builder(this)
        alertDialogBuilder.setTitle("Exit App")
        alertDialogBuilder.setMessage("Are you sure you want to exit?")
        alertDialogBuilder.setPositiveButton("Yes") { _: DialogInterface, _: Int ->
            finish()
        }
        alertDialogBuilder.setNegativeButton("Cancel") { _: DialogInterface, _: Int -> }

        alertDialog = alertDialogBuilder.create()
    }

    override fun onBackPressed() {
        alertDialog?.show()
    }
}

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="com.alfrosoft.alertdialogexample">

    <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/Theme.AlertDialogExample">
        <activity
            android:name=".MainActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

Step 5 - Let's run the application. I'm assuming you've already connected your actual Android Mobile device to your computer or configured your emulator.