
Search In
An activity represents a single screen with user interface(UI) i.e.,a window with which you interact with your android phone.
It is a pre-defined class in Android and every android application which has a UI must inherit it to create a window.Using a
For iOS 8 and above Apple have introduced UIAlertController to present action Sheet and alerts.
In order to present alert set preferredStyle to UIAlertControllerStyleAlert and for actionSheet preferredStyle to UIAlertControllerStyleActionSheet of y
To show animation on any view like on ImageView, I am implementing animation to show slide a view from top to bottom.
We need to create an xml file in anim folder. Here name top_bottom.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:
Here I am writing the way to change the color and icon of FloatingActionButton.
If I talk about icon of the action button, we need to fulfill of requirement and purpose of Floating button.
So we need to change the icon of the FloatingActionButton.
Hello readers….
By this blog i am just explaining the difference between test plan and test strategy. I hope this blog will be helpful for all test engineers --
Test Plan:-
A test plan for any application or software is described as a document
Please help me to resolve below error Getting Below error in Android studio after update the Compile and Build Tool version
Please find the attached bild.gardle file
early compileSdkVersion 21 buildToolsVersion "22.0.1"
and aslo added be
# A Python program returning multiple values from a method using dictionary
# Function is define that returns a dictionary
def fun():
d = dict();
d['str'] = "Demo"
d['x'] = 20
return d
# Driver code to test above method
d =
I found that sometimes button showing text in upper case.
I have found the solution that we just need to define property textAllCaps in the xml file.
For example
<Button
android:layout_width="match_parent"
andr
Foreach loop is another loop which was introduced in C++ 11. The advantage of foreach loop over other loops is that, it can access elements of an array quickly without performing initialization, testing and increment/decrement, the code bec
double (==) : This operator is used for checking equality, no strict comparison is done i.e this operator first converts the values to specific type then comparison is done and this conversion is done by the javascript i
