Saturday, January 4, 2014

Using custom fonts in Android

In Android their is support for adding custom fonts using Typeface in java file.

But it would be more helpful if Typeface can set in XML file just like setting default android fonts android:typeface="sans"

So first of all i assigned all the fonts prefixed with numbers


Then have a look at this code snippet

<!-- This code need to be pasted in res --- value -- attrs.xml file -->
<resources>
<declare-styleable name="TypefacedTextView">
<attr name="typeface" format="string" /> <!-- enter integer values -->
</declare-styleable>
</resources>
package com.test.customWidgets;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Typeface;
import android.util.AttributeSet;
import android.widget.TextView;
public class CustomTextView extends TextView{
Utility utility = new Utility();
public CustomTextView(Context context, AttributeSet attrs) {
super(context, attrs);
//Typeface.createFromAsset doesn't work in the layout editor. Skipping...
if (isInEditMode()) {
return;
}
TypedArray styledAttrs = context.obtainStyledAttributes(attrs, R.styleable.TypefacedTextView);
String fontNos = styledAttrs.getString(R.styleable.TypefacedTextView_typeface);
styledAttrs.recycle();
String font = utility.getFontName(Integer.valueOf(fontNos));
if(font != null) {
Typeface typeface = Typeface.createFromAsset(context.getAssets(), "fonts/"+font);
setTypeface(typeface);
}
}
}
//Programatically setting font. This is tedious i condiser , instead used UsingInLayoutFille.xml.
Typeface myTypeface = Typeface.createFromAsset(getAssets(), "fonts/10TitilliumWeb-SemiBold.ttf");
TextView myTextView = (TextView)findViewById(R.id.myTextView);
myTextView.setTypeface(myTypeface);
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:custom="http://schemas.android.com/apk/res/com.test.map" //This is important , this will connect custom:typeface=""
android:id="@+id/relative_main"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<com.test.customWidgets.CustomTextView
android:id="@+id/privacy_text"
style="@style/login_terms_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:onClick="privacyOnClick"
android:textColor="#646464"
custom:typeface="10"//setting 10TitilliumWeb-SemiBold.ttf font
android:text="@string/login_privacy_policy" />
</RelativeLayout>
package com.test.customWidgets;
import android.widget.EditText;
public class Utility {
private final String TW_SEMI_BOLD = "10TitilliumWeb-SemiBold.ttf";
private final String TW_SEMI_BOLD_ITALIC = "11TitilliumWeb-SemiBoldItalic.ttf";
private final String TW_BLACK = "1TitilliumWeb-Black.ttf";
private final String TW_BOLD = "2TitilliumWeb-Bold.ttf";
private final String TW_BOLD_ITALIC = "3TitilliumWeb-BoldItalic.ttf";
private final String TW_EXTRA_LIGHT = "4TitilliumWeb-ExtraLight.ttf";
private final String TW_EXTRA_LIGHT_ITALIC = "5TitilliumWeb-ExtraLightItalic.ttf";
private final String TW_ITALIC = "6TitilliumWeb-Italic.ttf";
private final String TW_LIGHT = "7TitilliumWeb-Light.ttf";
private final String TW_LIGHT_ITALIC = "8TitilliumWeb-LightItalic.ttf";
private final String TW_REGULAR = "9TitilliumWeb-Regular.ttf";
public String getFontName(int fontNos) {
String font = null;
switch (Integer.valueOf(fontNos)) {
case 1:font = TW_BLACK;break;
case 2:font = TW_BOLD;break;
case 3:font = TW_BOLD_ITALIC;break;
case 4:font = TW_EXTRA_LIGHT;break;
case 5:font = TW_EXTRA_LIGHT_ITALIC;break;
case 6:font = TW_ITALIC;break;
case 7:font = TW_LIGHT;break;
case 8:font = TW_LIGHT_ITALIC;break;
case 9:font = TW_REGULAR;break;
case 10:font = TW_SEMI_BOLD;break;
case 11:font = TW_SEMI_BOLD_ITALIC;break;
default:
break;
}
return font;
}
}
view raw Utility.java hosted with ❤ by GitHub

Wednesday, December 25, 2013

Creating Data Base tables in Android programatically

For me SQlite syntax is quite confusing  and difficult job . For creating below String

private static final String CREATE_TABLE_TODO = "CREATE TABLE "
            + TABLE_TODO + "(" + KEY_ID + " INTEGER PRIMARY KEY," + KEY_TODO
            + " TEXT," + KEY_STATUS + " INTEGER" ;

So created a function , which will create SQlite syntac for table creation
And created object , which need to be passed to the  function

public static String createSQLiteTable() {
TableCreater tableCreator[]= {
new TableCreater(KEY_ID ,TableCreater.integerDataType),
new TableCreater(KEY_TODO,TableCreater.textDataType),
new TableCreater(KEY_STATUS ,TableCreater.integerDataType)
};
return MySQLiteHelper.createTable(TABLE_NAME, tableCreator);
}
/**
* Send TableCreater {@link array} object and get the table string
* @param tableName
* @param tableCreator {@link array} object
* @return table {@link string}
* @throws <code>null</code> if sent TableCreater {@link array} object size is not greater than one.
*/
public static String createTable(String tableName,TableCreater tableCreator[]) {
if(tableCreator.length > 1) {
String CREATE_TABLE = "create table ";
CREATE_TABLE = CREATE_TABLE.concat(tableName + "(" + tableCreator[0].parameterName + " integer primary key autoincrement, ");
for(int i=1;i<tableCreator.length;i++) {
if(i == tableCreator.length-1) {
CREATE_TABLE = CREATE_TABLE.concat(tableCreator[i].parameterName + " "+ tableCreator[i].dataType + " not null " + ");");
}
else {
CREATE_TABLE = CREATE_TABLE.concat(tableCreator[i].parameterName + " "+ tableCreator[i].dataType + " not null, "); }
}
return CREATE_TABLE;
}
return null;
}
public class TableCreater {
public static String integerDataType = "integer";
public static String textDataType = "text";
public static String realDataType = "real";
public String parameterName;
public String dataType;
public TableCreater(String string, String string2) {
// TODO Auto-generated constructor stub
this.parameterName = string;
this.dataType = string2;
}
}


Tuesday, July 31, 2012

Coneecting ADT with Android device via Wireless network(Only for rooted devices)

This post is with the intention of eliminating the data cable which we normally use between Real device and Eclipse.

  • First of the android device should be rooted(Must have administrative permissions) , here is a link for rooting Android device(Galaxy pop S5570).In brief the procedure is to download a recovery file into the mobile phone SD card and then switch off the phone ---> then hold home and power button till you find the company logo , then you are into the recovery mode--> use volume buttons to slide up and down select "Apply update from SD card" and press home button to select then click "Reboot system now".
  • Download ADBWireless android app into your phone follow this link to get there. If you any issues with this app have a look at this androidcentral
  • Now its time to use the command prompt from your windows here is the procedure follow androidcentral link
  • If you any issues with the path of ADB follow this link  . That's it!!!!!!!!!!                                                       

Sunday, May 27, 2012

Moving Apps to SDCard in Android Phone

  • In Android Many apps cant be moved from phones internal memory to SDCard , Facebook was one of the app which i couldn't transfer to SDCard . 
  • But there is a solution to do this,Just u need to have android SDK installed in your PC/laptop.
  • Connect your Android through USB port(Make sure u have installed the your phone device driver).And in your Android device go to Settings-->Applications-->Development and check mark the USB debugging.
  • Then from the command prompt locate the location of ADB(Usually it will be in android-sdk-windows/platform-tools for windows machine) .
  • Then From the command prompt  type "adb device", after clicking Enter you must be able to see your Android device name.
  • After that to make SDcard as the default location for instaltion of app and also to tranfer app from internal storage to SDcard use "adb shell pm setInstallLocation 2"
  • Now you can see the apps which previously not able to transfer to SDcard are getting transferred.
  • If you want to disable this Then you van use "adb shell pm setInstallLocation 0
  • Reference Link

Thursday, November 24, 2011

A Tool to help Android UI desiginers:Android Design Preview

Check out this , it lets the designers to see his design into a real time anDroiD device. Here is the link for more information. 

Displaying anDroid Screen on to PC/Laptop

If there any application presentation needed to be done ,it cant be done done on 4 inch screen . There are some tools through which you can Display your anDroiD device screen on to computer. One good tool which came across was Ashot: AndroidScreenCapureSetup.v1.1 , u can get download link here

Friday, October 7, 2011

Facebook Hash Key on windows

To Develop facebook app for anDroiD u need to get Hashkey.So go to Cmd prompt

Download the openssl for windows here . Then unzip and save it
Now in the cmd prompt change dir to the bin folder of the jdk(which u have installed before using Eclipse) 
Type the command:
keytool -export -alias myAlias -keystore C:\Users\mpg\.android\myKeyStore | D:\software\openssl-0.9.8k_WIN32\bin\openssl sha1 -binary | D:\software\openssl-0.9.8k_WIN32\bin\openssl enc -a -e   

The Red color highlighted is the location of your "keystore" folder,which u can finf in c/users/user_name/.android.
The Light Pink color is the path of the unziped location of the downloaded openssl.
In the figure the highlighted text is the hashkey.which u need to insert while creating the application in the URL , Just login and create the new app.