[android-developers] Printing Malaysia | Digital large format printing| Dot2Dot

2018-02-01 Thread Jagadeesh 8899


Malaysia is of the countries in the world where a large scale printing 
services  has been taken place. 
Dot2Dot has been established in the year 2004, within a short span of time 
it has become the Largest Printing Company 
 in Malaysia. Dot2Dot offers all 
kind of Printing Services to its customers. It includes Digital Printing 
, Vehicle Wraps 
, Digital Cutting 
, UV Flatbed Printing 
, Canvas Printing 
, Wall Artz 
 and Advertising Display System 
 etc…

[image: printing malaysia] 

We are the leading Online Printing Company 
 in Printing Malaysia 
, specialized in all kinds of 
printing catalogues. Our motto is to provide Reliable Online Printing 
Solutions yet cost-effective Printing Services to people in Printing 
Malaysia. Over the past 15years we are serving the Malaysian small and 
medium scale businesses with our effective Digital Printing services and 
made them to reach their business goals. We are well known for our Digital 
Printing  services which made 
us distinct from our competitors.

Dot2Dot is the most comprehensive and a one stop Reliable Online Printing 
Company  in Printing 
Malaysia. We strive to face the challenges of Digital Printing industry. 
Our Reliable Online Printing Solutions helps the customers to reduce the 
time and budget for getting the work done. Our team of professionals are 
dedicated, skilful and highly talented which made us a centre for Digital 
Printing Services.

We are the Digital Printing experts operating services in Printing Malaysia 
for the past 15years. We will work with you, so that we can know what you 
really need. Customising the designs according to customer specifications 
is our speciality. We always strive to provide quality products at lower 
prices which help our customers to grow in their businesses. All these made 
us to earn a great Customer loyalty. Our designing and manufacturing team 
will work closely together to bring the unlimited possibilities of 
solutions for end products.

Get the high-end and professional designs from the latest and best Printing 
Malaysia designing trends.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/f79564f5-78e8-46f6-86dc-440f539c9316%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] expandiblelistview with child onitem clicklistener with go button

2012-08-08 Thread Jagadeesh
Thanks .I resolved that ISSue
On Aug 8, 2012 3:11 AM, Justin Anderson magouyaw...@gmail.com wrote:

 In Expanidble list view child after selecting  with checkbox of each child
 item based on childitem  i given on clicklistener with go button ,its not
 happening in code

 can any one help .

 Ummm what?

 Thanks,
 Justin Anderson
 MagouyaWare Developer
 http://sites.google.com/site/magouyaware


 On Sat, Aug 4, 2012 at 4:46 PM, TreKing treking...@gmail.com wrote:

 On Sat, Aug 4, 2012 at 1:50 PM, Jagadeesh mjagadeeshb...@gmail.comwrote:

  In Expanidble list view child after selecting  with checkbox of each
 child item based on childitem  i given on clicklistener with go button ,its
 not happening in code
 can any one help .


 Your question is not very clear. You should clarify and reduce your giant
 block of code to the smallest snippet possible that illustrates your
 problem.


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Datepicker

2012-07-26 Thread Jagadeesh
Hi How to restrict the future dates in Datepicker dialog,
is it possible in 2.3 version.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Datepicker

2012-07-26 Thread Jagadeesh
i have tried to future dates to disable ,in my code using 2.3 ginger bird
version in api 9 datepicker disable future dates its not there.
now i have tried useing 4.0 version , i have done searching i got this but
i have tried to implementing this in my code not able to fix

http://stackoverflow.com/questions/6116920/disable-future-dates-in-android-date-picker

how to resolve this can any one help .how to  disable future dates ,not
beyond current date,month and year.













import java.util.Calendar;
import java.util.Date;

import android.app.Activity;
import android.app.DatePickerDialog;
import android.app.Dialog;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.DatePicker;

public class samplecalender extends Activity implements OnClickListener {
private static final int DATE_DIALOG_ID_1 = 1;
private static final int DATE_DIALOG_ID_2 = 2;
private static final int SECOND_ACTIVITY = 3;
private int mYear, mDay, mMonth;
 public String month = null, day = null, firstDate = null,
secondDate = null;

private Button buttonFirstDate = null, buttonSecondDate = null,
buttonCallAnotherActivity = null;
 @Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initControls();
}

private void initControls() {
try {
buttonFirstDate = (Button) findViewById(R.id.buttonFirstDate);
buttonFirstDate.setOnClickListener(this);

buttonSecondDate = (Button) findViewById(R.id.buttonSecondDate);
buttonSecondDate.setOnClickListener(this);

buttonCallAnotherActivity = (Button)
findViewById(R.id.buttonCallAnotherActivity);
buttonCallAnotherActivity.setOnClickListener(this);

buttonCallAnotherActivity.setVisibility(View.GONE);
} catch (Exception e) {
e.printStackTrace();
}
}

@Override
protected Dialog onCreateDialog(int id) {
switch (id) {
case DATE_DIALOG_ID_1:
 DatePickerDialog dil = new DatePickerDialog(this,
datePickerListenerFirst,Calendar.getInstance().get(Calendar.YEAR),
Calendar.getInstance().get(Calendar.MONTH),
(Calendar.getInstance().get(Calendar.DAY_OF_MONTH)));
//dil.getDatePicker().setMaxDate(new Date());
return dil;

case DATE_DIALOG_ID_2:
{
 return new DatePickerDialog(this, datePickerListenerSecond,
Calendar.getInstance().get(Calendar.YEAR),
Calendar.getInstance().get(Calendar.MONTH),
(Calendar.getInstance().get(Calendar.DAY_OF_MONTH))-1);
}
default:
return null;
}
}

private DatePickerDialog.OnDateSetListener datePickerListenerFirst = new
DatePickerDialog.OnDateSetListener() {
public void onDateSet(DatePicker view, int year, int monthOfYear,
int dayOfMonth) {
mYear = year;

/*if(monthOfYear+1=Calendar.getInstance(Calendar.MONTH).CONTEXT_RESTRICTED))
mMonth = monthOfYear + 1;
mYear = year;*/

mDay = dayOfMonth;
 if (mMonth  9) {
 mYear = year;
month = 1 + mMonth;
//if(month = 1 + mMonth)
} else
month = String.valueOf(mMonth);

if (mDay = 9) {
day = 0 + mDay;
} else
day = String.valueOf(mDay);

firstDate = day + / + month + / + mYear;

buttonFirstDate.setText(firstDate);
}
};

private DatePickerDialog.OnDateSetListener datePickerListenerSecond = new
DatePickerDialog.OnDateSetListener() {
public void onDateSet(DatePicker view, int year, int monthOfYear,
int dayOfMonth) {
mYear = year;
mMonth = monthOfYear + 1;
mYear = year;

mDay = dayOfMonth;
if (mMonth = 9) {
month = 0 + mMonth;
} else
month = String.valueOf(mMonth);

if (mDay = 9) {
day = 0 + mDay;
} else
day = String.valueOf(mDay);

secondDate = day + / + month + / + mYear;

buttonSecondDate.setText(secondDate);
buttonCallAnotherActivity.setVisibility(View.VISIBLE);
}
};

public void onClick(View v) {
try {
switch (v.getId()) {
case R.id.buttonFirstDate:

Calendar cal = Calendar.getInstance();
mYear = cal.get(Calendar.YEAR);
mMonth = cal.get(Calendar.MONTH);
mDay = cal.get(Calendar.DAY_OF_MONTH);

showDialog(DATE_DIALOG_ID_1);

break;

case R.id.buttonSecondDate:

Calendar calendar = Calendar.getInstance();
mYear = calendar.get(Calendar.YEAR);
mMonth = calendar.get(Calendar.MONTH);
mDay = calendar.get(Calendar.DAY_OF_MONTH);

showDialog(DATE_DIALOG_ID_2);
 break;

case R.id.buttonCallAnotherActivity:
Intent intent = new Intent(samplecalender.this,GoScreenActivity.class);
intent.putExtra(firstDate, firstDate);
intent.putExtra(secondDate, secondDate);
startActivityForResult(intent, SECOND_ACTIVITY);
break;

default:
break;
}
} catch (Exception e) {
e.printStackTrace();
}
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent
data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == SECOND_ACTIVITY  resultCode == RESULT_OK) {
// Do What you want
buttonSecondDate.setVisibility(View.GONE);
}
}
}


On Thu, Jul 26, 2012 at 11:22 PM, TreKing treking...@gmail.com wrote:

 On Thu, Jul 26, 2012 at 11:38 AM, Jagadeesh mjagadeeshb...@gmail.comwrote:

 Hi How to restrict the future dates in Datepicker dialog

RE: [android-developers] Search

2012-07-25 Thread Jagadeesh
Yes.there is two activityies in my application ,both are expandible list
with different child group elements ,if able to search based on two
actvitis it would be enoigh
In search I used like
It's go on clicklistener
Companies.getexpandiblelistadapter();
Am doing like this its not happening
On Jul 25, 2012 3:28 AM, Tommy Hartz droi...@gmail.com wrote:

 Why not pass the text as extras to your search activity…

 ** **

 Check out the first answer here

 ** **


 http://stackoverflow.com/questions/2582690/android-passing-paramters-between-classes
 

 ** **

 *From:* android-developers@googlegroups.com [mailto:
 android-developers@googlegroups.com] *On Behalf Of *TreKing
 *Sent:* Tuesday, July 24, 2012 5:05 PM
 *To:* android-developers@googlegroups.com
 *Subject:* Re: [android-developers] Search

 ** **

 On Tue, Jul 24, 2012 at 1:24 PM, Jagadeesh mjagadeeshb...@gmail.com
 wrote:

 In My application two expandible list views are there in other actvity i
 have search screen ,

 when iam searching from search screen how to get those texts which
 contains in expandible list how can i get can any one give some guide lines
 to finish this.


 Your question is not very clear.


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] search +button in expandible list

2012-07-22 Thread Jagadeesh
CompaniesActivity extends ExpandableListActivity {
/** Called when the activity is first created. */

EditText edit;

Button search;

String[] text = { GSK, sanfoi, Elilly, Abbott, Novartios };

int textlength = 0;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
setListAdapter(new ExampleAdapter(this));
edit=(EditText)findViewById(R.id.edtxt);

// Search functionality

final ArrayListString text_sort = new ArrayListString();

search = (Button) findViewById(R.id.btn);

edit = (EditText) findViewById(R.id.edtxt);
 ExpandableListView listview = (ExpandableListView) findViewById(R.id.list);

listview.setAdapter(new MyCustomAdapter(text));


search.setOnClickListener(new OnClickListener() {

public void onClick(View v) {

textlength = edit.getText().length();
text_sort.clear();

for (int i = 0; i  text.length; i++) {
if (textlength = text[i].length()) {
if (edit.getText().toString().equalsIgnoreCase(
(String) text[i].subSequence(0, textlength))) {
text_sort.add(text[i]);

}
}
}

 setListAdapter((ExpandableListAdapter) new MyCustomAdapter(text_sort,
null));

}

});

}

class MyCustomAdapter extends BaseAdapter {

String[] data_text;
 MyCustomAdapter() {

}

MyCustomAdapter(String[] text) {
data_text = text;
 }

MyCustomAdapter(ArrayListString text, ArrayListInteger image) {
data_text = new String[text.size()];
 for (int i = 0; i  text.size(); i++) {
data_text[i] = text.get(i);
 }

}

public int getCount() {
return data_text.length;
}

public String getItem(int position) {
return null;
}

public long getItemId(int position) {
return position;
}
}


this my layout :

?xml version=1.0 encoding=utf-8?
LinearLayout xmlns:android=http://schemas.android.com/apk/res/android;
android:orientation=vertical
android:layout_width=fill_parent
android:layout_height=fill_parent
android:background=@drawable/background

  LinearLayout
android:id=@+id/linearLayout1
android:layout_width=fill_parent
android:layout_height=wrap_content 

EditText
android:id=@+id/edtxt
android:layout_width=250dp
android:layout_height=45dp
android:inputType=none /

Button
android:id=@+id/btn
android:layout_width=65dp
android:layout_height=50dp
android:layout_marginBottom=1dp
android:layout_marginRight=1dp
android:layout_marginTop=1dp
android:text=Search
android:textSize=13sp /
/LinearLayout


ExpandableListView android:id=@android:id/list
  android:layout_width=fill_parent
  android:layout_height=fill_parent
   android:paddingRight=20px
android:textSize=40px

  /







/LinearLayout


can you please help any one this .,

i used edittext and search button in layout file and i search is not
happening how to reslove this issues

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Calender view

2012-07-09 Thread Jagadeesh
How To get calender view ?


Thanks
Jagadeesh

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Expandiblelistview same layouts takeing for both actvities

2012-06-30 Thread Jagadeesh
HI
i Resolved this issue



On Fri, Jun 22, 2012 at 1:13 AM, Nobu Games dev.nobu.ga...@gmail.comwrote:

 So you are actually having a problem with both activities abbottasia and
 abbottusa, because they are using the same layout even though you created
 two separate ones? Why are you posting the code for this ListView activity
 then? This is completely unrelated to your problem.

 Look into both activities abbottasia and abbottusa, check whether you
 set the correct layout resource ids with setContentView in these
 activities' onCreate methods.

 If the correct layouts are in fact assigned then you need to clean and
 rebuild your project because sometimes the generated R class files get
 messed up a bit.

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Ball Racing

2012-05-28 Thread Jagadeesh
Hi
iam making game application ,i have designed gameplate with background and
grid with canvas and paint .

i need insert one ball with screen keepon coming from top of the screen how
to implement ,i was trying insert image but background domainating can any
one help this.

here my code:
package com.ibr;

import android.app.Activity;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Paint.Style;
import android.os.Bundle;
import android.view.Display;
import android.view.KeyEvent;
import android.view.View;

public class BallRacing extends Activity {
   DemoView demoview;
   int width = 0;
   int height = 0;
   int pass = 0;
   int xpos = 0;
   int ypos = 0;

   /** Called when the activity is first created. */
   @Override
   public void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   demoview = new DemoView(this);
   setContentView(demoview);
   }
   @Override
   public boolean onKeyDown(int keyCode, KeyEvent event) {
   return super.onKeyDown(keyCode, event);
   }

   private class DemoView extends View {
   public DemoView(Context context) {
   super(context);
   }

   @Override
   protected void onDraw(Canvas canvas) {
   super.onDraw(canvas);

   // custom drawing code here
   // remember: y increases from top to bottom
   // x increases from left to right

   Paint paint = new Paint();
   paint.setStyle(Paint.Style.FILL);

   // make the entire canvas white
   paint.setColor(Color.TRANSPARENT);
   canvas.drawPaint(paint);

   Display display = getWindowManager().getDefaultDisplay();
   width = display.getWidth();//start
   height = display.getHeight();//end


   xpos = width / 7;
   ypos = height/7;
   for (int i = 0; i  7; i++) {

   paint.setColor(Color.WHITE);
   canvas.drawLine(xpos +(xpos*i), 0, xpos +(xpos*i), height,
paint);
   //canvas.drawLine(startX, startY, stopX, stopY, paint)


   }
paint.setStyle(Style.STROKE);
   for (int i = 0; i  15; i++) {

   paint.setColor(Color.WHITE);
   canvas.drawLine(0, (ypos*pass)+ 5, width, (ypos*pass)+5,
paint);
   pass++;

   }
   }
   }
}

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] in Exapndible list view on clicklistener

2012-05-13 Thread Jagadeesh
i am doing expandible listview ,its working fine ,when iam trying set
for onlcik listener for childlist in for textview .setonclicklistner
with another activity its not working ..
 see my code..
public class CompaniesActivity extends  ExpandableListActivity  {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
setListAdapter(new ExampleAdapter(this));
}
private class ExampleAdapter extends BaseExpandableListAdapter
implements OnClickListener {
private Context context;
public ExampleAdapter(Context context) {
this.context = context;
}
public Object getChild(int groupPosition, int childPosition) {
return null;
}
public long getChildId(int groupPosition, int childPosition) {
return 0;
}
/**
 *  getChildView overridden method will have responsibility of
 *  constructing View for the child element when corresponding
 *  group element is activated by click / touch action.
 */

public View getChildView(int groupPosition, int childPosition,
boolean isLastChild, View convertView, 
ViewGroup parent) {
LinearLayout linear = new LinearLayout(this.context);
LinearLayout linear1 = new LinearLayout(this.context);

TextView tv = null,
tv1=null;
//Button b1= null;


if(groupPosition == 0) {
tv = new TextView(this.context);
tv1 = new TextView(this.context);

tv.setTextColor(Color.BLUE);
tv.getBackground().setAlpha(0);


tv.setText(Las);
tv.setPadding(70, 0, 0, 0);
tv.setClickable(true);
tv.setOnClickListener(new OnClickListener() {

public void onClick(View v) {
// TODO Auto-generated method 
stub
Intent clickIntent = new 
Intent();

clickIntent.setClass(getApplicationContext(), LinkActivity.class);
startActivity(clickIntent);

}
});
linear1.addView(tv);
//linear1.addView(b1);
linear.addView(linear1);

}
if(groupPosition == 1) {

tv = new TextView(this.context);
   tv.setText(North America);

linear.addView(tv);

}
return linear;
}
public int getChildrenCount(int groupPosition) {
return 1;
}
public Object getGroup(int groupPosition) {
return null;
}
public int getGroupCount() {
return 5;
}
public long getGroupId(int groupPosition) {
return 0;
}
public View getGroupView(int groupPosition, boolean isExpanded,
View convertView, ViewGroup parent) {
LinearLayout linear = new LinearLayout(this.context);

if(groupPosition == 0) {
TextView txtView = new TextView(this.context);
txtView.setText((Philips 
HealthCare:).toUpperCase());
txtView.setTextColor(Color.RED);
txtView.setPadding(70, 0, 0, 0);
linear.addView(txtView);


}
if(groupPosition == 1) {


TextView txtView = new TextView(this.context);
txtView.setText((Siemens).toUpperCase());
txtView.setTextColor(Color.RED);
  

[android-developers] msword file to save and open

2012-05-10 Thread Jagadeesh
Hi All,

 iam trying save msword file saved in raw folder and trying open that
file its not happening .
any suggestion..


Thanks Regards
Jagadeesh

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] msword file to save and open

2012-05-10 Thread Jagadeesh
Thanks,can you please elaborate and give any sample for reference

On Thu, May 10, 2012 at 9:13 PM, Mark Murphy mmur...@commonsware.com wrote:
 On Thu, May 10, 2012 at 11:39 AM, Jagadeesh mjagadeeshb...@gmail.com wrote:
  iam trying save msword file saved in raw folder and trying open that
 file its not happening .
 any suggestion..

 There is nothing in Android that will open an msword file. You
 will need a third-party app for that. And, you will need to copy the
 msword file out of your raw resource and put it someplace that the
 third-party app can reach it (e.g., external storage).

 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com | http://github.com/commonsguy
 http://commonsware.com/blog | http://twitter.com/commonsguy

 Android Training in DC: http://marakana.com/training/android/

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] list view doubt

2012-05-08 Thread Jagadeesh
Hi

in my list view i need to expand clicking on item need expand

List
samsung-another page should populate ---here i need specify one hyperlink
philips  -another page should populate here i need specify one
hyperlink


can any one give idea how i need to do

/// here my code

public class CompaniesActivity extends ListActivity {
public ListView lv;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setListAdapter(new ArrayAdapterString(this,
android.R.layout.simple_list_item_1, LISTITEMS));

lv = getListView();
lv.setTextFilterEnabled(true);

lv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView? parent, View view, int
position,long id) {


}
});
}
static final String[] LISTITEMS = new String[] {
Philips Healthcare, samsung, siemens Healthcare, 
mindtree
};


}

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Calendr

2012-05-08 Thread Jagadeesh
Hi
How to make calender based on day of the week i need open .one word file
can any one help me this

Thanks
Jagadeesh

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] List with expandable

2012-03-04 Thread Jagadeesh
Hi
 i have done with listactvity in my application ,now i need expand
when clicks and for each item
and again click on expandble list items should be back in same screen.
can you please guide me any one about this


///

package com.android.samplelisy;


import android.app.ListActivity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;

public class samplelist extends ListActivity {
String[] values = new String[] { Application, product,
Sabicproduct };
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);


// Use your own layout
ArrayAdapterString adapter = new ArrayAdapterString(this,
R.layout.main, R.id.label, values);
setListAdapter(adapter);
}




  @Override
  protected void onListItemClick(ListView l, View v, int position, long 
id)
  {
  String item = (String)
 getListAdapter().getItem(position);

  switch (position) {
  case 0:
  l.setOnItemClickListener(new 
AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView? av, 
View v, int pos, long id) {
   // onListItemClick(v,pos,id);

}

private void onListItemClick(View v, 
int pos, long id) {
// TODO Auto-generated method 
stub

}
});

  break; case 1:

break;

 }
  }


}

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=enattachment: device.png

[android-developers] re:eclipse plugin phonegap

2012-01-31 Thread Jagadeesh
Hi
iam working android project
my apps targeting cross platform like blackberry,iphone
where can i get phoneGap plugin for eclipse ganymade can any one share
the link might useful very urgent

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Issue with SDK installation

2011-12-22 Thread Jagadeesh Koganti
Sorry I meant version 16. Its the latest version available in Andriod
website. Let me know if you have any solution for this issue.

On Wed, Dec 21, 2011 at 10:08 PM, Michael Leung michaelchi...@gmail.comwrote:


 1.6 is too old, please try to install the latest one.
  On Thu, Dec 22, 2011 at 5:48 AM, Jagadeesh Koganti 
 jagadeesh.koga...@gmail.com wrote:

  Hello,

 I have observed that this is a known issue. But still trying to resolve
 it. I have successfully installed Andriod SDK 1.6 and also plugged in the
 required software ito my compatible eclipse.
 But still I am getting an issue saying  SDK Platform Tools component is
 missing. Please use the SDK Manager to install it.

 I have seen several forums and followed all the things, but could not
 succeed. Please could somebody let me know the right procedure to get this
 error resolved.
 This is blocking me to start any development activity.

 --

 Regards,
 Jagadeesh

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




 --
 Regards,
 Michael Leung
 http://www.itblogs.info - My IT Blog
 http://diary.skynovel.info - My Blog
 http://www.michaelleung.info - My Homepage

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 

Regards,
Jagadeesh

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Issue with SDK installation

2011-12-21 Thread Jagadeesh Koganti
Hello,

I have observed that this is a known issue. But still trying to resolve it.
I have successfully installed Andriod SDK 1.6 and also plugged in the
required software ito my compatible eclipse.
But still I am getting an issue saying  SDK Platform Tools component is
missing. Please use the SDK Manager to install it.

I have seen several forums and followed all the things, but could not
succeed. Please could somebody let me know the right procedure to get this
error resolved.
This is blocking me to start any development activity.

-- 

Regards,
Jagadeesh

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] tabwidget

2011-10-26 Thread Jagadeesh
hi
i have 5 tabspecs with icon one of the icon clicking on it should need
to display with image.text, cursor can an one help me in this
with database or static can any one guide me.

i have used listactivity with simpledapater but i didnt get simple
normal list its displaying is there any way like that its iphonescreen
its should be like android also

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] tab top back button

2011-10-26 Thread Jagadeesh
how to implement top of the back button already bottom tab i have 5tab
spec, how to implement the back button
can any one give me idea

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers]

2011-08-06 Thread jagadeesh
Hi 

See this code even this also getting like force close wait 

 

Intent myintent=new Intent(Intent.ACTION_VIEW,Uri.parse(www.google.com));

 startActivity(myintent);

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] re:Intent

2011-08-05 Thread jagadeesh
Hi see the below code:

 

 

Intent myintent=new Intent(Intent.ACTION_DIAL,Uri.parse(100));

startActivity(myintent);

 

I want to call one no from my intent itself but iam getting like forceclose
wait code

 

 

Thanks

 

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

RE: [android-developers] Re: SQLite + Android

2011-07-25 Thread jagadeesh
Hi 

 

I want to display my progress bar in center below that  one text I need
display

Iam new to android please guide me in right direction 

 

Thanks

Jagadeesh 

 

From: android-developers@googlegroups.com
[mailto:android-developers@googlegroups.com] On Behalf Of lbendlin
Sent: Friday, July 22, 2011 8:35 PM
To: android-developers@googlegroups.com
Subject: [android-developers] Re: SQLite + Android

 

well, there are many ways of doing it. The big boys prepare the database
structure (and some sample data) in the APK and then copy it to the
documents folder on first use. They also handle db structure updates during
version changes.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en 

No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 9.0.901 / Virus Database: 271.1.1/3781 - Release Date: 07/22/11
15:02:00

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] RE: google mapsapi

2011-07-25 Thread jagadeesh
Hi 

I want to display a map with co-ordinates 2 direction using

Source and destination I can able to display the map in mobile now I want to
show the direction can any one please guide me for right direction 

 

 

Thanks

Jagadeesh

 

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en