Facebook Color Code
Note: Facebook Color can only added via FB Lite and seen in FB Lite only.
fg=ffff0600 FOR RED
fg=b0ffd700 FOR GOLDEN
fg=b0000000 FOR BLACK
fg=b0ff7f00 FOR ORANGE
fg=b0ffff00 FOR YELLOW
fg=b0ff00ff FOR LIGHT PINK
fg=b0ff007f FOR DARK PINK
fg=b0ff0000 FOR REDDISH PINK
fg=b0800000 FOR BROWN
fg=b0ffc0cb FOR LIGHT...
Saturday, December 31, 2016
Thursday, December 15, 2016
AIDE Tutorial - 17 Check Box
AIDE Tutorial - 17 Check Box
Watch the video below and try yourselfMain.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<CheckBox
android:onClick="aaa"
android:id="@+id/one"
android:text="Phone"
android:layout_width="fill_parent"
android:layout_height="wrap_content"...
Tuesday, December 13, 2016
AIDE Tutorial - 8 Toast Gravity
AIDE Tutorial - 8 Toast Gravity
Add a button on XML
<Button
android:onClick="Click1"
android:text="Click Me"
android:layout_width="wrap_content"
android:layout_height="wrap_content"...
Sunday, December 11, 2016
AIDE Tutorial - 6 Button
AIDE Tutorial - 6 Button
Watch the below video 🤗
Normal Button
This is the example of normal button.
<Button
android:text="Android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
Image button
This is the example of image button. In this image button i have choosen the ic_launcher i.e. auto generated android icon...
Friday, December 9, 2016
AIDE Tutorial - 9 Internet Button
AIDE Tutorial - 9 Internet Button
Define a button in main.xml
<Button
android:onClick="Click1"
android:text="Click Me"
android:layout_width="wrap_content"
android:layout_height="wrap_content"...
Wednesday, December 7, 2016
AIDE Tutorial - 7 Toast Button
AIDE Tutorial - 7 Toast ButtonToast Button will help to appear toast when the button is clicked. In this app, we add onClick method to the button whenever the button is clicked a toast message will appear. To show toast we will use a normal Button.
Add a button on XMLFirst of all add a button. Lets add a normal button.
...