Skip to content

Commit 338bb5d

Browse files
author
Javatechig
committed
Added AndroidTextShadow
1 parent 91b52a1 commit 338bb5d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+198
-0
lines changed

AndroidTextShadow/AndroidManifest.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.example.textshadow"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="14"
9+
android:targetSdkVersion="19" />
10+
11+
<application
12+
android:allowBackup="true"
13+
android:icon="@drawable/ic_launcher"
14+
android:label="@string/app_name"
15+
android:theme="@style/AppTheme" >
16+
<activity
17+
android:name="com.example.textshadow.MainActivity"
18+
android:label="@string/app_name" >
19+
<intent-filter>
20+
<action android:name="android.intent.action.MAIN" />
21+
22+
<category android:name="android.intent.category.LAUNCHER" />
23+
</intent-filter>
24+
</activity>
25+
</application>
26+
27+
</manifest>

AndroidTextShadow/ic_launcher-web.png

50.2 KB
633 KB
Binary file not shown.

AndroidTextShadow/project.properties

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# This file is automatically generated by Android Tools.
2+
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3+
#
4+
# This file must be checked in Version Control Systems.
5+
#
6+
# To customize properties used by the Ant build system edit
7+
# "ant.properties", and override values to adapt the script to your
8+
# project structure.
9+
#
10+
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11+
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12+
13+
# Project target.
14+
target=android-19
7.48 KB
3.69 KB
12.2 KB
24.2 KB
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2+
android:layout_width="fill_parent"
3+
android:layout_height="fill_parent"
4+
android:orientation="vertical"
5+
android:padding="20dp" >
6+
7+
<TextView
8+
android:id="@+id/textview"
9+
android:layout_width="wrap_content"
10+
android:layout_height="wrap_content"
11+
android:layout_gravity="center_horizontal"
12+
android:shadowColor="#000"
13+
android:shadowDx="0"
14+
android:shadowDy="0"
15+
android:shadowRadius="50"
16+
android:text="Text Shadow Example1"
17+
android:textColor="#FBFBFB"
18+
android:textSize="28dp"
19+
android:textStyle="bold" />
20+
21+
<TextView
22+
android:id="@+id/textview2"
23+
android:layout_width="wrap_content"
24+
android:layout_height="wrap_content"
25+
android:layout_gravity="center_horizontal"
26+
android:text="Text Shadow Example2"
27+
android:textColor="#FBFBFB"
28+
android:textSize="28dp"
29+
android:textStyle="bold" />
30+
31+
</LinearLayout>

0 commit comments

Comments
 (0)