My favorites
▼
|
Sign in
myandroidwidgets
Sample Apps for Android
Project Home
Downloads
Wiki
Issues
Source
Checkout
Browse
Changes
Source path:
svn
/
trunk
/
CustomFont
/
src
/
com
/
beanie
/
samples
/
customfont
/
MyButton.java
r56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.beanie.samples.customfont;
import android.content.Context;
import android.graphics.Typeface;
import android.util.AttributeSet;
import android.widget.Button;
public class MyButton extends Button {
public MyButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}
public MyButton(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public MyButton(Context context) {
super(context);
init();
}
private void init() {
if (!isInEditMode()) {
Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "fonts/ds_digib.ttf");
setTypeface(tf);
}
}
}
Show details
Hide details
Change log
r38
by coomar.101 on Apr 8, 2011
Diff
Initial commit
Go to:
/trunk/CustomFont/.classpath
/trunk/CustomFont/.project
...k/CustomFont/AndroidManifest.xml
/trunk/CustomFont/assets
/trunk/CustomFont/assets/fonts
...omFont/assets/fonts/ds_digib.ttf
...omFont/assets/fonts/handsean.ttf
...Font/assets/fonts/samplefont.ttf
...nk/CustomFont/default.properties
/trunk/CustomFont/proguard.cfg
/trunk/CustomFont/res
/trunk/CustomFont/res/drawable-hdpi
...mFont/res/drawable-hdpi/icon.png
/trunk/CustomFont/res/drawable-ldpi
...mFont/res/drawable-ldpi/icon.png
/trunk/CustomFont/res/drawable-mdpi
...mFont/res/drawable-mdpi/icon.png
/trunk/CustomFont/res/layout
...k/CustomFont/res/layout/main.xml
/trunk/CustomFont/res/values
...ustomFont/res/values/strings.xml
/trunk/CustomFont/src
/trunk/CustomFont/src/com
/trunk/CustomFont/src/com/beanie
...ustomFont/src/com/beanie/samples
...rc/com/beanie/samples/customfont
...les/customfont/HomeActivity.java
...samples/customfont/MyButton.java
...mples/customfont/MyTextView.java
Project members,
sign in
to write a code review
Older revisions
All revisions of this file
File info
Size: 751 bytes, 31 lines
View raw file
Powered by
Google Project Hosting