Re: [android-developers] Re: How to develop openvpn.

2014-11-02 Thread sree android
I tried it.But it is giving force close.

On Sun, Nov 2, 2014 at 5:03 AM, Sheharyar Naseer sheharyar.nas...@gmail.com
 wrote:

 Hey @sree,
 Have you tried taking a look at ICS-OpenVPN
 https://code.google.com/p/ics-openvpn/? Maybe that's what you're
 looking for.

 --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: how to add URL button

2014-11-01 Thread sree android
try this code

public void callWebURL( String urlLink) {
Intent urlCalling= new Intent( Intent.ACTION_VIEW , Uri.parse( urlLink) );
startActivity( urlCalling);
}


On Sat, Nov 1, 2014 at 10:30 AM, Naresh Pedagani nareshpedag...@gmail.com
wrote:


 for this you can use webview,please go through bellow example.
 http://javatechig.com/android/android-webview-example




 On Wednesday, October 29, 2014 6:06:29 PM UTC+5:30, Osamah Alzouby wrote:

 Hello
 I want to add URL button to my project. How I can create it?

 Thank you

  --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How to develop openvpn.

2014-10-31 Thread sree android
Hi Every one,

We are developing Remote Access Application in android.For that we selected
OpenVpn, but how to implement OpenVpn in android,is there any open source
code for openvpn in android.Please share any information regarding openvpn.


Thank you.

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Exception in AES-256 Algoritham.

2014-10-20 Thread sree android
Hi friends,

i am implementing json data decryption in android using AES-256, ECB mode.
In these server implementation is done in php using Rijndael encryption*
with 24 digit key and 32 digit initial vector,ECB mode.If i implement with
this key and initial vector in client i got Exceptions saying ECB mode
doesn't support IV(initial vector),If i change ECB mode to CBC mode it is
saying IV length must be 16 bytes o*nly.

Please guide me how can i decrypt data in android using AES-256 algoritham.

Thanks in advance.

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How to work with Digital certificates in android

2014-10-09 Thread sree android
Hi friends,

I am working on digital certificates.In my project i am downloading .pem
and .crt certificate into SD card,From these to certificate i need to
generate BKS keystore programatically,for this i tried alot.but i did get
any idea.Please help me any one.

Thanks in advance.

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Get status in activity from BroadCastReceiver

2014-10-09 Thread sree android
thank you boss.


On Fri, Oct 10, 2014 at 9:15 AM, Abhilash Baddam 
abhilash.androiddevelo...@gmail.com wrote:

 Hi,
 You can try in this way,
 whenever you want to check data connection then just call the below
 function it returns connection availability:


public boolean isConnectingToInternet(){
 ConnectivityManager connectivity = (ConnectivityManager)
 _context.getSystemService(Context.CONNECTIVITY_SERVICE);
   if (connectivity != null)
   {
   NetworkInfo[] info = connectivity.getAllNetworkInfo();
   if (info != null)
   for (int i = 0; i  info.length; i++)
   if (info[i].getState() ==
 NetworkInfo.State.CONNECTED)
   {
   return true;
   }

   }
   return false;
 }

 On Tue, Oct 7, 2014 at 5:11 PM, sree android android.sreeni...@gmail.com
 wrote:

 Hi every one,
 I am implementing one internet based application,in this application i
 want to check internet status everywhere.So i am implementing broad cast
 receiver,i got status in onReceive() method when i changed network state
 like wifi or mobile data,from onReceive() method to activity how i can pass
 these status.

 please check my below attachemnt code.

 --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


  --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] How to implement app specific VPN

2014-09-25 Thread sree android
Thank you for giving replay,

But my case is not for data transfer,In my application i want create VPN
for connecting another server.

On Thu, Sep 25, 2014 at 1:19 AM, Todd Grigsby tgrigsby...@gmail.com wrote:

 Sounds like you want to pass secure data. Why not just encrypt the data?
 On Sep 24, 2014 4:29 AM, sree android android.sreeni...@gmail.com
 wrote:

 Hi,

 In my application, i need to implement application specific VPN and that
 VPN data should not modify the user.How can i implement this feature in my
 app.


 Thank you for advance.

 --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

  --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How to implement app specific VPN

2014-09-24 Thread sree android
Hi,

In my application, i need to implement application specific VPN and that
VPN data should not modify the user.How can i implement this feature in my
app.


Thank you for advance.

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Align text right side in spinner

2013-12-04 Thread sree android
 Hi,
i want display text right side, inside spinner.my code is

Spinner
android:id=@+id/leaveTypeSpinner
android:layout_width=match_parent
android:layout_height=wrap_content
android:layout_gravity=right
android:layout_margin=5dp
android:background=@drawable/arspinner_image
android:gravity=right /

my root layout is LinearLayout.please guide me.

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Avoid app force closed issue.

2013-12-02 Thread sree android
Hi friends,
some times i am faceing a problum.That is when i am getting data from
server using web services ,some times my app is force closed due to low
internet peers(Low internet signals).how can i handle this problum and how
can i avoid app force close problum.

when my app app is force close at that time alert will display,when i press
that alert i will navigate to home screen.


thank you in advance.

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Hijri Calender in android

2013-11-20 Thread sree android
Hi friends,

i am developing HRMS app,it is developing with english and arabic.When i am
implementing calender date will display in english and arabic.arabic
follows hijri calender,how can i implement hijri calendeplease guide
me.how can i do.


thank you in advance.

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Re: insert data from android to sql server though WCF web services

2013-09-17 Thread sree android
this is my WCF implemented class code and interface

this interface
[OperationContract]
[WebInvoke(Method = POST,
UriTemplate = InsertLeaveRequest,
BodyStyle = WebMessageBodyStyle.WrappedRequest,
ResponseFormat = WebMessageFormat.Json,
RequestFormat = WebMessageFormat.Json)]
string InsertLeaveRequest(LeaveRequst leaveRequest);

this bean class

[DataContract]
public class LeaveRequst
{
[DataMember(Name=EmployeeID)]
public int EmployeeID { get; set; }

[DataMember(Name = LeaveTypeID)]
public int LeaveTypeID { get; set; }

[DataMember(Name = SessionID)]
public int SessionID { get; set; }

[DataMember(Name = TotalDays)]
public int TotalDays { get; set; }

[DataMember(Name = Balance)]
public int Balance { get; set; }

[DataMember(Name = FromDate)]
public DateTime FromDate { get; set; }

[DataMember(Name = ToDate)]
public DateTime ToDate { get; set; }

[DataMember(Name = IsApproved)]
public byte IsApproved { get; set; }

[DataMember(Name = IsRejected)]
public byte IsRejected { get; set; }

//[DataMember(Name = IsCancel)]
//public byte IsCancel { get; set; }

[DataMember(Name = IsExported)]
public byte IsExported { get; set; }

}

this implemented class
public string InsertLeaveRequest(LeaveRequst leaveRequest)
{
string Message=;
string connectionString =
WebConfigurationManager.AppSettings[conn].ToString();
using (SqlConnection connection = new SqlConnection())
{
connection.ConnectionString = connectionString;
connection.Open();

SqlCommand cmd = new SqlCommand(insert into
biz_EmployeeLeaveLedger(EmployeeID,LeaveTypeID,SessionID,FromDate,ToDate,TotalDays,Balance,IsApproved,IsRejected,IsExported)
values(@EmployeeID,@LeaveTypeID,@SessionID,@FromDate,@ToDate,@TotalDays,@Balance,@IsApproved,@IsRejected,@IsExported),
connection);
cmd.Parameters.AddWithValue(@EmployeeID,
leaveRequest.EmployeeID);
cmd.Parameters.AddWithValue(@LeaveTypeID,
leaveRequest.LeaveTypeID);
cmd.Parameters.AddWithValue(@SessionID,
leaveRequest.SessionID);
cmd.Parameters.AddWithValue(@FromDate,
leaveRequest.FromDate);
cmd.Parameters.AddWithValue(@ToDate, leaveRequest.ToDate);
cmd.Parameters.AddWithValue(@TotalDays,
leaveRequest.TotalDays);
cmd.Parameters.AddWithValue(@Balance,
leaveRequest.Balance);
cmd.Parameters.AddWithValue(@IsApproved,
leaveRequest.IsApproved);
cmd.Parameters.AddWithValue(@IsRejected,
leaveRequest.IsRejected);
cmd.Parameters.AddWithValue(@IsExported,
leaveRequest.IsExported);
   int result = cmd.ExecuteNonQuery();
if (result == 1)
{
Message = result +Record inserted successfully;
}
else
{
Message =  Record not inserted successfully;
}

connection.Close();
return Message;
}
}


On Tue, Sep 17, 2013 at 12:24 PM, Giuseppe porcelli.giuse...@gmail.comwrote:

 Show the server code please

 --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] insert data from android to sql server though WCF web services

2013-09-16 Thread sree android
hi friends,
i am inserting data from my mobile to SQL Server using WCF web services.but
Data is not inserting.So please help me any one.i wrote below code for
that,check it is correct or not.it is giveing response code is 400.

thank you,


// POST request to service
HttpPost request = new HttpPost(URL);
request.setHeader(Accept, application/json);
request.setHeader(Content-type, application/json);



/*@EmployeeID,@LeaveTypeID,@SessionID,@FromDate,@ToDate,@TotalDays,@Balance,
 * @IsApproved,@IsRejected,@IsExported*/

// Build JSON string
JSONStringer insert = new JSONStringer()
.object()
.key(insert)
.object()
.key(empid).value(emp_id)
.key(leavecode).value(code)
.key(sessionid).value(sesson_id)
.key(fromdate).value(fDate)
.key(todate).value(tDate)

.key(totaldays).value(tdays)
.key(balance).value(balance)
.key(isapproved).value(isApproved)
.key(isrejected).value(isRejected)

.key(isexported).value(isExported)

.endObject()
.endObject();
StringEntity entity = new StringEntity(insert.toString());

request.setEntity(entity);

// Send request to WCF service
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpResponse response = httpClient.execute(request);

Log.d(WebInvoke, Saving :  +
response.getStatusLine().getStatusCode());

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] select from and to date at a time.

2013-07-08 Thread sree android
thank you friend for your replay


On Mon, Jul 8, 2013 at 6:17 PM, Dalvinder Singh singh.dal...@gmail.comwrote:

 Either you can use
 http://developer.android.com/reference/android/app/DatePickerDialog.html
 or
 http://developer.android.com/reference/android/widget/CalendarView.html

 If you want to develop your own calendar then you can use
 http://developer.android.com/reference/android/util/MonthDisplayHelper.html
 This will provide you basic calculations e.g. what should be first day of
 calendar etc.

 Cheers
 Dalvinder Singh



 On Mon, Jul 8, 2013 at 5:31 PM, sree android 
 android.sreeni...@gmail.comwrote:

 Hi,
 The below attachment image contain select date from and todate at a
 time.Here i selected from 14th and i draged to 27th.Here the selected date
 is displayed in edittext like 14 JUL to 27 JUL.How it posible in
 android.Which concept is implemented here.Please tell me how it is posible
 in android.It is needed for me.


 Thakyou in advance.

 --
 --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.






 --
 *Cheers*,
 *Dalvinder Singh* | http://dalvinsingh.blogspot.in/

 --
 --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Re: Generate Barcode Image

2013-06-20 Thread sree android
Thank you friend.


On Thu, Jun 20, 2013 at 12:28 PM, Jadranko Bodiroga 
jadrankobodiroga1...@gmail.com wrote:

 i did not generate BarCode for android,but when i generete in some other
 language,i just sent text with code to TextBox,and import EANCODE  13 Font
 in that textBox.And it shown code like you show on picture...SO try like
 that-Just send code on textBox,and try importing that font on your
 project...Sorry ,becouse i do not have code to send-i just try to help
 teoreticly :)

 --
 --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Re: Generate Barcode Image

2013-06-19 Thread sree android
I did this using webservices.But i have a dout,their is any possible to
develop directly means without using Webservices.
in Google,They are saying use Zxing project.But in that their is no source
library.If you known its development.please tell me steps only.
Thank you


On Tue, Jun 18, 2013 at 1:52 PM, Piren gpi...@gmail.com wrote:

 search this forum (also, the entire internet would be a good place)..
 that's like the 20th time someone asked.


 On Tuesday, June 18, 2013 10:25:17 AM UTC+3, sree wrote:

 Hi friends,
 I Need to generate barcode image in android like below attached image.But
 i tryed many ways,i didn't get solution.Please help me any one.


 Thanks in advance.

  --
 --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Generate Barcode

2013-05-16 Thread sree android
Hi,
How can i create a simple bar code create example in android.
here when enter number in edit text that number will convert into bar code
image.
Please give me suggestion how can i implement this.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Generate Barcode

2013-05-16 Thread sree android
Hi
Thank you for your replay.
 But that isn't my requirement,My
requirement is when i enter value in edit text and press button called
generate barcode,then barcode image will generate in android.Please give me
solution.

Thank you.


On Thu, May 16, 2013 at 5:49 PM, Mukesh Srivastav mukicha...@gmail.comwrote:

 use the below link that will help you to create the barcode in Android.


 http://www.mysamplecode.com/2011/09/android-barcode-scanner-using-zxing.html



 On Thu, May 16, 2013 at 5:43 PM, sree android android.sreeni...@gmail.com
  wrote:

 Hi,
 How can i create a simple bar code create example in android.
 here when enter number in edit text that number will convert into bar
 code image.
 Please give me suggestion how can i implement this.

 --
 --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.






 --
 Warm Regards,
 *Mukesh Kumar*,
 Android Consultant/Freelancer,
 India,Hyderabad.

 --
 --
 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 unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Barcode Generator

2013-05-05 Thread sree android
Hi
In my App i read numbers from web application using webservices,using those
numbers i need to generate barcode images.How it is possible.
Please give me any idea or explain steps for do this.

Thank you in Advance.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Re: Improve data retriveing time from server.

2013-04-16 Thread sree android
thank you friends.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Improve data retriveing time from server.

2013-03-19 Thread sree android
Thakyou for your answer .

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Improve data retriveing time from server.

2013-03-18 Thread sree android
Hi friends,
i am developing CRM application in android,but when retriveing data from
server it is take much time for displaying data on device.How can i improve
thid problum.

*For Example.*

In Server has 100 records,when i am retriveinng these records i need to
display with in the fraction of time.

please help me how can i do it.

Thankyou in advance.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Re: remove blue strip below Tab with actionbar

2013-03-03 Thread sree android
Hi friend,
Thank you for gave replay for my query,can you provide any example on this
concept.please.

Thank you in advance.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] remove blue strip below Tab with actionbar

2013-03-01 Thread sree android
Hi friends .
see the above attachment image.in that i implemented actionbar with
tabs.but i need to remove blue strip of below tab and i need to adjust
padding of tabs.
i tried this,but i did not get result.can you please give me how can i do
it.it is urgent for my requirement.

Thanks in advance.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


attachment: device-2013-03-01-183546.png

Re: [android-developers] Re: Adjust ActionBar Tabs Width

2013-02-16 Thread sree android
thank you rour best answer.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Adjust ActionBar Tabs Width

2013-02-15 Thread sree android
Hi
see The above attachment.
I implemented ActionBar tabs,But when i add more than 3 tabs it is going
back of the screen.so i need to adjust width for each tab.How can i do it.
actually i need to implement 5 tabs.

Thank you in advance.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Pass Object

2013-02-14 Thread sree android
Hi friends,

I have a dout on Fragments.How can i pass object from fragment to fragment.
Here My Code,

CityData tname = lcd.get(position);
CityFragment f2=new CityFragment();
Bundle b=new Bundle();
b.putSerializable(TNAME,tname);
Log.i(,Passed Data:+b.size());
f2.setArguments(b);

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Pass Object between Fragments

2013-02-14 Thread sree android
Hi friends,

I have a dout on Fragments.How can i pass object from fragment to fragment.
Here My Code,

  /*/Sending Object.*
CityData tname = lcd.get(position);//Here lcd is ArrayList
Object and CityData is POJO class.

CityFragment f2=new CityFragment();//Fragment Class
Bundle b=new Bundle();
b.putSerializable(TNAME,tname);
Log.i(,Passed Data:+b.size());//Here Bundle length is 1.
f2.setArguments(b);//this length is Zero.


* //Retriveing Object*

 Bundle bun =getArguments();
CityData cd=(CityData) bun.getSerializable(TNAME);//Here Value
Null.
cityid=cd.getID();
tv.setText(cd.getNameEnglish())

Please any Body solve my problum.How i pass Data between Fragments.

Thank you in Advance.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] splash with animation

2013-02-13 Thread sree android
Hi Good Moorning,
i need more help from these blog,How can i create splash screen with
animation.these splash screen look like STC app in play store.
Here activity will loaded from bottom to top,splash image move top when
activity loaded.
these i tried with small piece of code but it is not execute as my
requirement or give me any code blogs.

Thank you in advance.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] select call option

2013-02-12 Thread sree android
Hi,
i write a code for make a phone call,here code is


 String number=contactList[position];
Intent callIntent=new
Intent(android.content.Intent.ACTION_CALL);
callIntent.setData(Uri.parse(tel:+number));
startActivity(Intent.createChooser(callIntent,));


When select phone number directly connecting to call.but my mobile have
viber and skype.it is not asking viber or skype.how can i write code for
these operation(when i select a number for make a call it will ask dialer
or skype or viber).
 give me any suggessions.
thank you in advance.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Select Numbers from CustomListview

2013-02-11 Thread sree android
Hi,
See above image,In that when i click on second row all numbers are display
in dialogue.How it is possible.(means i would like to implement call
function for the custom listview when i click on particular row all numbers
will load one dialogue and select one number for phone call.)


please give me any suggesions for development these function.

Thank you.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


attachment: device-2013-02-11-165738.png

Re: [android-developers] Select Numbers from CustomListview

2013-02-11 Thread sree android
Thank you for your replay,But these is possible only one array of phone
numbers,But i have two arrays.so i need to call these two types arrays in
one dialogue see the second row their is three numbers these three numbers
are accessing from three arrays.
please give any sugession or share any example.

Thank you in advance.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Notification Services

2013-02-02 Thread sree android
Hi,
Run app in background if app is close or open(example GMail in android
mobile)and at these time notification will display every 1 min or
notification will display when record is insert.(using webservices).

How we can implement in android and please share me steps or any example.
sorry for my english.
Thank you in advance.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] set Mydate to Datepicker

2013-01-30 Thread sree android
Hi,
when i am create datepicker dialogue,it contain current date,month,year was
displayed.instead of these i would like to display my own date,month,year.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Re: Google Map Android Api V2 not working

2013-01-30 Thread sree android
can u send your xml code.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Re: Google Map Android Api V2 not working

2013-01-29 Thread sree android
see these link,it is usefull to u.

http://android-er.blogspot.in/2013/01/using-mapfragment-instead-of.html

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Maps v2 with Fragments

2013-01-28 Thread sree android
Hi,
How can i create maps v2 with using fragments.
i saw few exmples in google.all the examples are extended using Activity or
FragmentActivity.But i want to extend Fragment,because i implemented tabs
using fragments.in these tabs on tab haveing locations.so i need to extend
Fragment.

sorry for spelling mistakes.please give me suggessions or examples.

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Different layout for Different screen sizes.

2013-01-22 Thread sree android
Hi,
i am implementing UI design for samsung S3 and nexus S.when i am run my
project compatability of screen is change.
i am using separate layout in res folder like layout-sw240dp(Nexus S),
layout-sw320dp(S3).when i am running these both devices are take
layout-sw320dp xml file.

can help any one for these problem.
thank you in advance

-- 
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] What is Fragments?

2013-01-17 Thread sree android
What is Fragments,why we are using it.When we are working 16th API it is
mandatory or not  to extends FragmentsActivity.

-- 
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: What is Fragments?

2013-01-17 Thread sree android
thank you

-- 
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] How can i implement Datepicker with Alert

2013-01-12 Thread sree android
Hi,
i need to display Datepicker with Three buttons(Set,Alert,Cancel).How can i
implement these.

i Traied these way ,
i took Alert Dialogue object and set three buttons to alert dialogue
object(positive,negative,neutral).Here how can i  take datepicker in alert
dialogue.
help me with any idea or snippet of code.

-- 
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: Hi bros

2013-01-10 Thread sree android
thank you for you good suggession.

-- 
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: hi

2013-01-08 Thread sree android
i am reading data from webservices using ksoap.

-- 
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: hi friends

2013-01-07 Thread sree android
3000 meand 3 milly seconds(1000 seconds for 1ms).It is correct.

-- 
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] hi friends

2013-01-04 Thread sree android
Here It contain lot of code,please explain me.

-- 
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] hi friends

2013-01-04 Thread sree android
thank you i got it.Using SimpleDateFormat class.
thank you bro.

-- 
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] hi friends

2013-01-04 Thread sree android
How can i fix SocketTimeoutException: Connection timed out
give me any suggession.

-- 
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] Hi bros

2013-01-04 Thread sree android
Hi friends,
See The above attachment image.In that i implemented CustomListView and
text are retrive from SOAP webservices.
But When i click on ListView,i cant get any response.
Why
suggest me,What is the problem.

list.setOnItemClickListener(this);
@Override
public void onItemClick(AdapterView? arg0, View arg1, int position,
long arg3) {

Toast.makeText(TasksActivity.this,I am clicked on Item Number
is:+position,3000).show();

}

-- 
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-2013-01-05-122001.png

Re: [android-developers] Re: Hi bros

2013-01-04 Thread sree android
It is not Working bro.

-- 
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: hi friends

2013-01-03 Thread sree android
thank you friend.

-- 
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] hi friends

2013-01-03 Thread sree android
The above attachment i can use four TextView and one CheckBox and One
ImageView.

Four textview are display like below  format and when i click check box
strike all textviews.give me ideas or any code.
Between each textview i can use pipe symbol.how

TEXTVIEW
(TEXTVIEW | TEXTVIEW | TEXTVIEW)

-- 
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-2013-01-03-173057.png

[android-developers] Re: hi friends

2013-01-03 Thread sree android
TEXTVIEW

 (TEXTVIEW | TEXTVIEW | TEXTVIEW)


-- 
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: hi friends

2013-01-03 Thread sree android
I Got solution for this,Thank you no need to explain it.

 TEXTVIEW
 (TEXTVIEW | TEXTVIEW | TEXTVIEW)


-- 
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] hi friends

2013-01-03 Thread sree android
Hi friends

 i am reading date value from webservices (DD/MM/) and set these date
to textview.After Displaying the values is show like DD/MM/.Here i can
store reading date value in one array and these array is bind to textview.
But i want to display DD/MM only how.
plz help me

-- 
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] hi friends

2013-01-02 Thread sree android
Hi friends,
The above attachment i prepared ListView with Sections,Here i need to call
Custom Listview inside sections.It is posible or not.
If it is possible how can i do.please give me stepts or any code links.

thank you in advance.

-- 
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: image one.pngattachment: image two.png

[android-developers] Re: hi friends

2013-01-02 Thread sree android
I am asking customlistview inside customlistview.It is possible or not.If
it is possible How.

The above attachements are implemented with customlistview using
webservices.

-- 
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] terminating android application

2013-01-02 Thread sree android
you can write finish() method end of the activity.

-- 
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: help me urgent

2013-01-01 Thread sree android
After takeing two one dimensional arrays, i prepared one two dimensional
array.like this way

String [ ][ ] taskoutput=new
String[prioritynamearray.length][taskvaluesarray.length];
then Loop is rotating like this way,


for (int s = 0; s prioritynamearray.length; s++) {
for (int t = 0; t taskvaluesarray.length; t++) {
 taskoutput[s][t]=here how can i add above two values into 2d arrays.
}
 }

-- 
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] HI BROS

2013-01-01 Thread sree android
After takeing two one dimensional arrays, i prepared one two dimensional
array.like this way

String [ ][ ] taskoutput=new
String[prioritynamearray.length][taskvaluesarray.length];
then Loop is rotating like this way,


for (int s = 0; s prioritynamearray.length; s++) {
for (int t = 0; t taskvaluesarray.length; t++) {
taskoutput[s][t]=here how can i add above two values into 2d arrays.
}
}


PLEASE SEND ME REPLAY.

-- 
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] hi friends

2012-12-31 Thread sree android
Happy New Year to One And All.

Please suggest me,

The above attached image,How can i display that items.How can i add items
particularly in Today or Tomarrow Textviews and also the line below of
Today textview.
Please send me replay with which concept is used and how.

-- 
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: s.jpg

Re: [android-developers] hi friends

2012-12-24 Thread sree android
Thank u friend.Shall u share any code.
On Dec 24, 2012 9:25 PM, nemi chhimpa ern...@gmail.com wrote:

-- 
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] XMLParsing

2012-12-24 Thread sree android
U have code for sax parser goto these blog  www .
ramscreative.blogslot.com.it helps to u.
On Dec 24, 2012 12:22 PM, Sadhna Upadhyay sadhna.braah...@gmail.com
wrote:

 Hi Everybody,

Can Some one tell me how to XML Parsing data from
 server.please help me.




 Thanks:
 Sadhana.



 --
 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] hi friends

2012-12-23 Thread sree android
when i am working webservices,internet is mandatory.If without internet
connection i would like to connect my app,at that scenario the TOAST
message will display like YOUR APP  HAS REQUIRE INTERNET CONNECTION 
.After display the message my app will exist or it will goes to network
connection settings and where i write these code.

sorry for my english,please help me any one

-- 
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] chek the image

2012-12-09 Thread sree android
Thank you bro i wil try.
On Dec 9, 2012 7:34 PM, Mohd Arshi Khan arshikha...@gmail.com wrote:

 in image -
 1.  list with header.
In header 
  a button for speech and
  a relative layout with edit boxbutton for plus. 
 2. list items are -
 a imageview, check box, textview and a button for call.
 3. quick action on item long click in list.

 --
 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]

2012-12-08 Thread sree android
See the below image their is a feed the cat in that horizantal display is
showed..Which concept is apply their.
i tried many using expandablelistview child horizantally,but not showed.
already one developer is said,it is contact Badge concept.but is not.plz
send which concept is followed here and any code also provide if it is
possible,

-- 
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] chek the image

2012-12-08 Thread sree android
See the below image their is a feed the cat in that horizantal display is
showed..Which concept is apply their.
i tried many using expandablelistview child horizantally,but not showed.
already one developer is said,it is contact Badge concept.but is not.plz
send which concept is followed here and any code also provide if it is
possible,

-- 
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: taspas.png

Re: [android-developers] Java knowledge

2012-12-07 Thread sree android
Every one say java basics is enough for learning android,But it is wrong as
my experience.We should know complete knowledge on Core java for learning
android.But, for working in real time  we should know basic knowledge on
JDBC,Webservices,Servlets,JSP while developing real time projects,Now all
the projects are developed on webservice based projects in android.

All the best.
Link for above topics
http://www.coreservlets.com/

-- 
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] hi friends

2012-12-06 Thread sree android
Thank you sir,i am ur student.

-- 
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] hi friends

2012-12-05 Thread sree android
 TextView tv=(TextView) v.findViewById(android.R.id.text1);

tv.setPaintFlags(tv.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);

using the above line of code we can strike the text,but how can i
remove the strike on the text.like reverse of above.

-- 
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] hi friends

2012-12-05 Thread sree android
i would like to display options menu in one activity,when i click one item
in options menu,another options (like options within the options menu on
same window )will be display in the same window.how it is posible with any
code.plz
thank you.

-- 
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] hi friends

2012-12-04 Thread sree android
help me.i would like to display images in gridview from sd card specific
folder.
any body have any idea,give me please.

-- 
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] sqllite database with data

2012-12-01 Thread sree android
Their is possible to do it.But it is supported only CRUD operations ,light
weight database and it is local for single user.

If you are maintain single database(common for every one)for all user you
will maintain server and you can use web services in android project.(Here
Client and Server relation).

-- 
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: hi bros

2012-11-30 Thread sree android
i am using but not working


 Toast.makeText(MyExpandableActivity.this,Clicked
 Child,Toast.LENGTH_LONG).show();





-- 
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: hi friends

2012-11-29 Thread sree android
Thank you bro.

-- 
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] How to create program on server side code java and client side code in android?

2012-11-28 Thread sree android
you can write server side code in JEE or PHP or .NET and using webservice
concept we can use in android.
these is the link,it is use full you.

http://javatutorialspoint.blogspot.in/2012/02/simple-java-web-service-client-using.html

-- 
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] hi

2012-11-27 Thread sree android
thank you bro,i got solution.using remote DB

-- 
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] hi friends

2012-11-21 Thread sree android
how can i access json web services from java(servlets or JSP) to
android,here only i will check username and password of mysql database.
when i enter username and password ,compare toMySql database.if comparation
is true then navigate new activity,other wise display toast like invalid
username and password.

please give me any idea and code.it is very urgent for me.

thank you advance.
sorry for my english.

-- 
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] hi

2012-11-21 Thread sree android
First thanks for your replay and spend your valuable time for me.


What ever u said entire thing is 100% right,but how can i solve my problem

i did not have anybody for solve these problem.

These is Login access using JSON webservices ,
Here My server code and Android is gave.when i running these code
connection null is came in line number 54 in android code mobile class.if u
have interest to solve these problem please solve me,database is not
importent here.u can change whatever u have.
plz execute and solve problem

-- 
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] hi

2012-10-02 Thread sree android
hi friends i would like store settings using sharedpreferences in my
app,help any one with code.thank you.

-- 
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] How can i use both Gallery and Grid views in one activity.

2012-10-02 Thread sree android
Hi friends,i am displaying images by using Grid and Gallery view with in
the same activity.Can any body help me with code.

-- 
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] hi

2012-09-20 Thread sree android
hi friends
i would like to share my app to social networks with share button any one
help with code.

-- 
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] hi

2012-08-31 Thread sree android
thank you for information.

-- 
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: hi

2012-08-27 Thread sree android
thank you friend

-- 
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] hi

2012-08-27 Thread sree android
hi
how to post my app into google play,
plz send procedure for that
step by step plz

-- 
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: hi

2012-08-27 Thread sree android
hey friend may i known your location.i like you so much shall i talk to you
personally.

-- 
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: hi

2012-08-27 Thread sree android
i have one more dout,after posting the app  into google play ,then some is
download it ,at that time we will get any profit?

sorry for my bad english.

-- 
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] hi

2012-08-27 Thread sree android
hai friends i would like to share my app in to social networks like
facebook,twiter,gmail how.any body help with social networks code.

-- 
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: hi

2012-08-25 Thread sree android
thank you for your replay,shall you provide any video for me...plz

-- 
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: Android button position changes while the screen rotating

2012-08-25 Thread sree android
you will use layoutland operation in your layout folder.

-- 
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] hi friends

2012-08-24 Thread sree android
thank you friend

-- 
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] hi

2012-08-24 Thread sree android
hi friends i would like to play video from url (you tube video) in my app,t
tried it but it cant play,any one help me.
this is my code



package com.aiss;

import android.app.Activity;
import android.net.Uri;
import android.os.Bundle;
import android.widget.MediaController;
import android.widget.VideoView;

public class KakadAarathiActivity extends Activity {
/** Called when the activity is first created. */
String srcPath=http://youtu.be/dhCdd9RKMcw;;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

VideoView vv=(VideoView)findViewById(R.id.kakadvideo);
vv.setMediaController(new MediaController(this));
vv.setVideoURI(Uri.parse(srcPath));
vv.start();
}
}

-- 
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] hi friends

2012-08-23 Thread sree android
i friends ,
i want to display route path between two cities in my app
any one help plz

-- 
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] How to get every time new/refreshed Current Location

2012-08-23 Thread sree android
hai friends how can find distance between tow cities in my app,help me plz

-- 
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