-
Recent Posts
- Using an Objective C framework, which is inside a Swift framework, in a Xamarin iOS project
- Swipeable table view cell with custom editable views in iOS
- How to create a Swift framework that is compatible with Xamarin iOS
- How to add LightInject to your Xamarin project
- Navigate between views in Xamarin iOS using MVVM Light
Archives
- June 2019
- May 2019
- March 2019
- February 2019
- November 2018
- August 2018
- June 2018
- June 2015
- May 2015
- March 2015
- January 2015
- November 2014
- October 2014
- September 2014
- August 2014
- November 2013
- September 2013
- March 2012
- January 2012
- December 2011
- November 2011
- September 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- January 2011
- December 2010
Categories
Meta
Monthly Archives: March 2011
Login example for PHP
Following image shows the simple form that I am going to use as login window. Some important code phases relevant to above GUI is as follows. … form id=”form1″ name=”form1″ method=”post” action=”login.php” … input type=”text” name=”textfieldUsernameName” id=”textfieldUsernameId” … input type=”password” … Continue reading
Posted in PHP examples
2 Comments
How to get the content that user type in a EditText field in one Activity to another Activity in Android
In this blog post you can learn how to get the content that user type in a EditText field in one Activity to another Activity in Android. Below you can see the “FormActivity” interface. We want to pass the content … Continue reading
Posted in Android Examples
10 Comments
How to shift within two Activities in an Android
Assume there is an android application and in the “src” folder there are two Activities named as “RedFlashlightActivity” and “GreenFlaslightActivity”. When the application run first start the “RedFlashlightActivity”. We can assure that by putting <intent-filter> tag in that particular Activity … Continue reading
Posted in Android Examples
1 Comment