in values folder open styles.xml alternative to @sbaar's answer, keep windowActionBar to false and add windowNoTitle as ...
class ActionBarActivity is deprecated.
Since the version 22.1.0 , the class ActionBarActivity is deprecated. You should use AppCompatActivity . Read here and here for ...
This Activity already has an action bar supplied by the window decor
I also faced same problem. But I used, getSupportActionBar().hide(); before setContentView(R.layout.activity_main); Now it is workin...
Gradle project refresh failed android studio
File -> Invalidate Caches / Restart -> Invalidate and Restart worked for me.
How do i declare a static variable in javascript or how do i access a variable globally in javascript
Hi all, My colleagues and my friends are asked me how do i declare static variables in java script and then how to access those variable w...
Puttina Roju nadu em cheyali
Manaku thelini enno vishayalu gurugaru chaganty varu cheppedi ippudaina aacharinchandi Posted by Sudha Kalasipudi on Sunday, 20 Ap...
Facebook type time ago plugin or function in javascript
use as show below var time = time_algo(time_stamp); //here time_algo call the function function time_algo(time_stamp){ var t= new Dat...
How to speed up website or how to load css and javascript files async
To load css and js asynchronously For stylesheets Use this way @import url('css/jquery.material.form.css'); instead of <l...
How to store UTF8 (indian language) data in mysql?
ALTER TABLE tablename MODIFY Column_name VARCHAR(2000) CHARACTER SET UTF8; Run this query now your database table column will accept the ...
Javascript to find url in the text and replace as links
//url find and replace function replaceURLWithHTMLLinks(text) { var re = /(\(.*?)?\b((?:https?|ftp|file):\/\/[-a-z0-9+&@#\/%?=~_...
What happens if a class doesn't implement all the methods defined in the interface?
When a class is defined to implement an interface, the class must provide definitions of all the methods defined in the interface. Otherwis...
MVC vs HMVC for web application development
HMVC can do anything that MVC can and more one of the things that you will or had struggled with in MVC is that you can't call a con...
How to set session timeout in php
@session_start (); if (! isset ( $_SESSION [ 'uname' ]) || $_SESSION [ 'uname' ] == " " || ...
What is CSRF token
CSRF tokens could also be sent to a client by an attacker due to session fixation or other vulnerabilities, or guessed via a brute-force...
The Wordpress template functions must know
<?php echo esc_url( get_template_directory_uri() ); ?> bloginfo('charset') language_attributes() wp_head(); get_sideb...
PHP javascript to get the current location name of the user
http://ip-api.com p-api.com provides free usage of its Geo IP API through multiple response formats.
PHP Script to display months from current month
<select name="mnth"> <?php $month = date('n'); //To Get current month value $max = (12-$month) + 24; for($m...
PHP Script to get the client IP Address
function get_client_ip() { $ipaddress = ''; if (getenv('HTTP_CLIENT_IP')) $ipaddress = getenv(...
How to format db query as array result
$query = $this->db->query("YOUR QUERY"); foreach ($query->result_array() as $row) { echo $row['title']; ec...
I faced interview question on codeigniter
What is inhibitor in codeigniter What is CSRF how it safe for website What is final keyword How to write interface Why PHP doesn'...
Codeigniter and PHP Interview questions
Top 200 PHP interview questions and answers are below Questions : 1 Who is the father of PHP ? Answers : 1 Rasmus Lerdorf is known as t...
Popular Posts
- Detecting the Ajax request in Core PHP
- Demanding a price for software development
- Payment Gateway Options and Pricing in India
- How to integrate SEND Grid with Codeigniter
- How to print document content with jquery
- Add one day to the today date in php
- File Upload Conditions helper in Codeigniter
- Address auto fill city, state, district, country, pincode
- Codeigniter 4 Email Code
- How do I run a PHP script using windows Task Scheduler?