ShareThis

Showing posts with label XML. Show all posts
Showing posts with label XML. Show all posts

Tuesday, April 24, 2012

XML List of US Colleges Websites (Over 2100 Entries)

Here is a list of over 2100 US colleges urls. I needed this list for some SEO work. No copyright or anything so feel free to re-use, but please leave me a comment if this helped you out! Thanks :)

Preview:


(file download after adfly window)




Friday, January 13, 2012

USA Capitals and States XML file download

XML file for programming use

Title: USA Capitals and States XML file download
Format: State | Capital | State Nickname

Download:

Sunday, October 30, 2011

How to Use Android textColor - with Examples!


Example:-
Input
Output
[sourcecode language="css"]
<TextView android:text="@+id/TextView01"
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#23cf34" />
[/sourcecode]
textviewtextcolor
[sourcecode language="css"]
<EditText android:text="@+id/EditText01"
android:id="@+id/EditText01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#23cf34" />
[/sourcecode]
edittexttextcolor
[sourcecode language="css"]
<Button android:text="@+id/Button01"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#23cf34" />
[/sourcecode]
buttontextcolor
Here the Hexadecimal value of the Color we used is "#23cf34"
android:textColor="#23cf34"