Skip to main content

Posts

MyWaah Marathi

Privacy Policy Mihir Vaste built the Waah Marathi app as a Free app. This SERVICE is provided by Mihir Vaste at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Waah Marathi unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information, including but not limited to location,intern...
Recent posts

Sqlite database connection to Android Studio

IN THIS PROJECT THERE ARE TWO FILES  FIRST IS TO CREATE A DATABASE AND CONNECT TO DATABASE SECOND IS JAVA FILE Mainactivity.java file package com.example.programmingknowledge.sqliteapp; import android.app.AlertDialog; import android.database.Cursor; import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; public class MainActivity extends ActionBarActivity {     DatabaseHelper myDb;     EditText editName,editSurname,editMarks ,editTextId;     Button btnAddData;     Button btnviewAll;     @Override     protected void onCreate(Bundle savedInstanceState) {         super.onCreate(savedInstanceState);         setContentView(R.layout.activit...

Register page in Android Studio using Firebase Databse

#Register page in android Studio #Connect your project to firebase database #Here typed add data in store in your firebase storage as node public class RegisterActivity extends AppCompatActivity { private Button CreateAccountButton; private EditText InputName,InputPhoneNumber, InputPassword; private ProgressDialog loadingBar; @Override protected void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout.activity_register); CreateAccountButton = (Button) findViewById(R.id.register_btn); InputName = (EditText) findViewById(R.id.register_username_input); InputPassword = (EditText) findViewById(R.id.register_password_input); InputPhoneNumber = (EditText) findViewById(R.id.register_phone_number_input); loadingBar = new ProgressDialog( this ); CreateAccountButton.setOnClickListener( new View.OnClickListener() { @Override ...

RecyclerView in Android

#Java class #In this file we connect model class and viewholdw class to show in recyclerview public class AdminProductShow extends AppCompatActivity { private Query ProductsRef ; private RecyclerView recyclerView ; RecyclerView.LayoutManager layoutManager ; @Override protected void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout. activity_admin_product_show ); ProductsRef = FirebaseDatabase. getInstance ().getReference( "Products" ); recyclerView = findViewById(R.id. allProduct_recyclerview ); recyclerView .setHasFixedSize( true ); layoutManager = new LinearLayoutManager( this ); recyclerView .setLayoutManager( layoutManager ); } protected void onStart() { super .onStart(); final DatabaseReference AdminProductsRef = FirebaseDatabase. getInstance ().getReference( "Products" ); FirebaseRecycle...