|
Thanks a lot, you guys are really cool & great.
Thanks
Md. Marufuzzaman
I will not say I have failed 1000 times; I will say that I have discovered 1000 ways that can cause failure – Thomas Edison.
|
|
|
|
|
If you want to learn Android here are a few links:
Android Developers Guide[^]
Eclipse is the most common IDE[] but I would recommend getting started with the Motodev Studio IDE[^]. Either way, download the IDE and get started because it can take a long time to download all the SDK's.
You install the SDK's using the Android SDK Manager. If you install Motodev IDE you can find the manager in the menu bar under the Windows menu.
You don't need an actual device to start learning. You can use simulators called AVD's, Android Virtual Devices. Google recently introduced Fragments, Action bars and other stuff that has made things a bit more complex so keep it simple to start with.
It's a challenging but rewarding space so have fun!
"You get that on the big jobs."
|
|
|
|
|
Thanks a lot, you guys are really cool.
Thanks
Md. Marufuzzaman
I will not say I have failed 1000 times; I will say that I have discovered 1000 ways that can cause failure – Thomas Edison.
|
|
|
|
|
Hello.
Can you please advise a few sites for starting Windows Mobile programming. I am C# programmer and interested to work on mobile devices.
Thank you.
CanI
|
|
|
|
|
Md. Marufuzzaman wrote: I hope your suggestion help me to see sunshine
wrong forum
If it moves, compile it
|
|
|
|
|
hai friends,am new here i want to send video from android to computer.
In computer am using C language.So i think UDP packet sending is better.So I want a Android code for sending frames whic is in UDP packets.
please help
|
|
|
|
|
Well, you're going to have to write your own... there's probably some sort of library if you look hard enough. Video conferencing can employ a lot of different configurations (point-to-point, server in the middle) so you're just going to find a library that you can use and extract what you need. Or if you're a proficient programmer, just do it yourself, Android uses Java though, they do have emulators so you can test your code on your PC.
|
|
|
|
|
Well, I think I got myself into trouble here. The boss was not happy at all that I said I couldn't do something. So I thought I'd post here again for some "urgentz gimme linkz" help (haha?)
We have a generic knockoff tablet from china. It's Android B1 that is not supported by clockwork recovery software. I can install an image manually, but to do that I need to know the device. This device doesn't even have a name...so I don't even know what to google. Anyone have any help?
I tried explaining this to the boss. I also explained that he is not asking me to write software (this was when he was explaining how programmers don't give up, and he's never had a programmer say they couldn't do anything). Also, because I'm a linux guy does not make me an android guy. (And android apps don't still don't make this "my cup of tea").
I'm not sure what to do. Any help [other than telling me to get a new job ] would be appreciated greatly.
If it moves, compile it
|
|
|
|
|
Is there anyway to write mobile application which runs on all mobile os(like android, windows & sympion os).
|
|
|
|
|
currently, no.
I have a rant that goes along with this, but I will spare you.
If it moves, compile it
|
|
|
|
|
Yes, its called a website . You could wrap a website for each platform to reduce dev time. Beware that if that site has a link to an opportunity to buy product that Apple doesn't make their 30%+, the app may be rejected for breaching Apple guidelines.
I can see into the future, tools like CodeSmith will be used to generate boiler-plate code. But even then there are issues. The main one is the look and feel of the different platforms. Other things like licensing, advertising etc will mean you're not going to find a push button solution.
"You get that on the big jobs."
|
|
|
|
|
There's actually a whole article on this somewhere... how HTML is coming back around as the goto since everyone went with different runtime environments in the mobile world.
|
|
|
|
|
Hi Everyone,
I have a problem when I develop on ASP.NET MVC 4 (mobile)
I using jquery mobile
<link rel="stylesheet" type="text/css" href="http://dev.jtsage.com/cdn/simpledialog/latest/jquery.mobile.simpledialog.min.css" />
<script type="text/javascript" src="http://dev.jtsage.com/cdn/simpledialog/latest/jquery.mobile.simpledialog2.min.js"></script>
<script type="text/javascript">
$(document).delegate('#simpleraw', 'click', function () {
$('<div>').simpledialog2({
mode: 'blank',
headerText: 'Some Stuff',
headerClose: true,
blankContent:
"<ul data-role='listview'><li>Some</li><li>List</li><li>Items</li></ul>" +
// NOTE: the use of rel="close" causes this button to close the dialog.
"<a rel='close' data-role='button' href='#'>Close</a>"
})
})
</script>
in html, i add link "Show Dialog"
Show Dialog
When i run --> it ok!
but i replace:
<script type="text/javascript">
$(document).delegate('#simpleraw', 'click', function () {
$('<div>').simpledialog2({
mode: 'blank',
headerText: 'Some Stuff',
headerClose: true,
blankContent: function () {$(this).load('@Url.Action("Menu")')}
})
})
</script>
but not ok!
Please help me!
Thanks all.
|
|
|
|
|
I searched CP and google and didn't find anything on CP. I found apps for this and that for android, but not quite what I wanted.
I'm looking for information on creating a backup image of an android tablet, and then restore it from that image. I found it googling once before, but at the time the company thought it was less than useful. Now I need to find the information again, having not saved it the first time, as it is useful now....
Anyone have the information/link handy?
-edit
I figured out how to get it into "fast boot" mode. I'm reading that I should be able to make a recovery/backup from there so I may be going in the right direction now.
If it moves, compile it
modified 10-May-12 12:26pm.
|
|
|
|
|
Anybody know 'how to add and remove local notification badge in ios5 and above'?
Thanks in advance.
FriendlyCoding
|
|
|
|
|
Hi, I am doing Airplay application for capture any screen shot in my iphone device. I don't know how to add the airplay button on to video footer bar(means airplay button beside forward backword buttons). Can u help me anyone how to get this feature. And when click on Airplay button need to display all enabled devices. Can u anyone please share the code thing also.
|
|
|
|
|
Good Day All
i am consuming a Wcf service from Android. i am a bit new to Android Dev most of my problems i was able to resolve. this one caught me off guard. My wcf service is defined as follows
public List<MemberModel> Helloworld(string number)
{
List<MemberModel> lstnames = new List<MemberModel>();
MemberModel model = new MemberModel();
model.MEMBER_NAME = "Vuyiswa";
lstnames.Add(model);
return lstnames;
}
and my Memember datacontract class is defined like this
[DataContract]
public class MemberModel
{
private string _MEMBER_NAME;
[DataMember(Name = "MEMBER_NAME")]
public string MEMBER_NAME
{
get
{
return _MEMBER_NAME;
}
set
{
_MEMBER_NAME = value;
}
}
}
and my ServiceContract looks like this
[DataContract]
public class MemberModel
{
private string _MEMBER_NAME;
[DataMember(Name = "MEMBER_NAME")]
public string MEMBER_NAME
{
get
{
return _MEMBER_NAME;
}
set
{
_MEMBER_NAME = value;
}
}
}
and i am consuming this in my Adroid app like this
public void getWcfService() throws ClientProtocolException, IOException, JSONException
{
TextView textView1 = (TextView)findViewById(R.id.textView1);
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpGet request = new HttpGet(SERVICE_URI + "/Helloworld/1");
request.setHeader("Accept", "application/json");
request.setHeader("Content-type", "application/json");
HttpResponse response = httpClient.execute(request);
HttpEntity responseEntity = response.getEntity();
char[] buffer = new char[(int)responseEntity.getContentLength()];
InputStream stream = responseEntity.getContent();
InputStreamReader reader = new InputStreamReader(stream);
reader.read(buffer);
stream.close();
JSONObject MemberModel = new JSONObject(new String(buffer));
textView1.setText(MemberModel.getString("MEMBER_NAME"));
}
i get an Error on the Following line
JSONObject MemberModel = new JSONObject(new String(buffer));
and the Error is
org.json.JSONException: End of input at character 0 of
I have looked at the my Wcf service, i used the wcftestclient to test the public url and it brings that one item in the list.
Thanks for your Help in Advance
Vuyiswa Maseko,
Spoted in Daniweb-- Sorry to rant. I hate websites. They are just wierd. They don't behave like normal code.
C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vuyiswamaseko.com
vuyiswa[at]dotnetfunda.com
http://www.Dotnetfunda.com
|
|
|
|
|
What is the value of the buffer? It looks like the buffer is empty.
"You get that on the big jobs."
|
|
|
|
|
.. Ya it looks like the buffer is empty... 
|
|
|
|
|
Hi
We have a website developed using html. Events and data are handled by jQuery and Web services resp. Now our customer wants this site to be viewed on SharePoint 2010. This part is simple and straight. But they want this SharePoint site to be viewed on mobile. I understand that I will have to develop web parts for mobile. But currently I am very confused and not sure how to proceed. Any help/tips/suggestions appreciated.
Thanks
MK.
|
|
|
|
|
hi
i have an android application and i want to connect it to a server (java server )
i know how to connect J2ME client to a server
can i do the same thing with android?
or there is another way (so what is it ) ?
is there any tutorials (even videos ) for that
thank you very much
|
|
|
|
|
Depending on what kind of connectivity you're trying to achieve:
If you mean connecting via raw sockets, Android java supports the java.net[^] package.
For accessing SOAP web-services there is an open source project[^] which you can use in your application (of course, after you check the licenses to make sure you comply). Last I tried it, it still had issues, but it might be better now. You can search google for a bunch of tuts.
Google showed me this[^] among others when I searched for http client programming, but I haven't used it, so I wouldn't know much about it.
"It was when I found out I could make mistakes that I knew I was on to something."
-Ornette Coleman
"Philosophy is a study that lets us be unhappy more intelligently."
-Anon.
|
|
|
|
|
I'd like to write a WPF Windows app that can access the images on my Windows Phone.
When I plug the phone in, I don't see it. I've had other phones that showed up in Windows Explorer as another hard drive and you could copy images on/off the phone.
How can I access the images on a Windows 7 Phone in a WPF application?
Everything makes sense in someone's mind
|
|
|
|
|
For accessing the pictures from code you will probably need to use the media library class[^]
If you want to browse your phones pictures from your computer, you'll need to install the Zune software and browse them from there. You can of course also sync from the Zune software to get the pictures off of your phone.
And lastly, you can set the phone to upload all of the pictures to SkyDrive and browse that from your computer as well.
|
|
|
|
|
I use an assemble to get a code for WP7 app use RDP protocol to connect to the PC and control it
It debug right but the problem it can't connect to any PC.
I know the code it right but I don't find any problem in the code
video Show the connection
I upload some videos using monitor traffic :
the original RDP
Showing my error
error
You see the difference between he 2 apps, it's the send the RDP started from the 4th line
|
|
|
|