Creating a tableLayout dynamically in Android

2 Comments

Creating layouts using xml is easy. But creating layouts in runtime is the only option sometimes… TableLayout tableLayout = (TableLayout) findViewById(R.id.layoutTable);         LinearLayout.LayoutParams tableRowParams = new LinearLayout.LayoutParams(                 LinearLayout.LayoutParams.MATCH_PARENT,                 LinearLayout.LayoutParams.WRAP_CONTENT);         /* create a … Continued

JavaScript based Android Game Development : Trump vs Chicken

Leave a comment

Recently I have collaborated in an Android Game development with few of my friends which was named Trump vs Chicken. It was in javascript based on Phaser.js framework. Later we’ve used cocoon.io to port it to Android platform. Initially we’ve tested with cordova but it was sluggish. Maybe cordova is better for App development rather … Continued

Kernel Installation Guide

Leave a comment

Kernel Installation Guide Downloading the Kernel Download kernel version 2.6.36 to the appropriate directory. If you just plan to install or upgrade the kernel running on your machine, the appropriate directory is /usr/src/. If you are going to be hacking this kernel, download to somewhere like your home directory. wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.36.tar.gz tar xzvf linux-2.6.36.tar.gz