|
It really depends on what you are trying to do with the two applications. What will the Android app do that cannot be done through the website, and vice versa ?
|
|
|
|
|
you can use and online Mysql database for this purpose
|
|
|
|
|
You need to create below :
1)website <--->Middleware Webservice<-->Central Database
2)Android Application <-->Middleware Webservice<-->Central Database
|
|
|
|
|
Hi,
I want to root my sony Xperia
how it works ?
Can someone help me ?
|
|
|
|
|
Wrong site: this is for development, not users who want to root phones
Try Google - a very basic search should get you what you want: Root SONY XPERIA - Google Search[^]
Sent from my Amstrad PC 1640
Never throw anything away, Griff
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
No No, this is not a mistake, I mean to ask professionals who won't lead me to lose my cellphone at the end!! It's very difficult to root my Xperia V.E.R.Y !!
Dit you try it yourself ? You should !! You'll find that it's VERY HARD to do so don't think I am making you lose your time responding to my request..
|
|
|
|
|
I have to tell My SONY Xperia is the ONE and it's very hard to find how to root it.. could you ?
|
|
|
|
|
OriginalGriff wrote:
Wrong site: this is for development, not users who want to root phones
Try Google - a very basic search should get you what you want: Root SONY XPERIA - Google Search[^]
Sent from my Amstrad PC 1640
Never throw anything away, Griff
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: <a href="https://www.codeproject.com/Members/DalekDave">@DalekDave</a> is now a follower!
I SEE THIS ON MY POST .. " This message has been flagged as potential spam and is awaiting moderation" Can you tell me please why and how and what for someone would spam this website ?
regards
|
|
|
|
|
Member 14137478 wrote: hy and how and what for someone would spam this website Take a look up the top of the page, any site with 13 MILLION+ registered users will be a spam target. CP has been working on automated spam filters for some years and while they are not perfect (therefore your message got nailed) but we see very few legitimate complaints about blockages.
Never underestimate the power of human stupidity -
RAH
I'm old. I know stuff - JSOP
|
|
|
|
|
Quote: can you tell me please why and how and what for someone would spam this website ? you would have to ask the hundreds of spammers that get kicked out. Beats me why anyone would spam any website. Or email address. Or just spam. But then I'm a nice person. Not a spammer.
In the meantime, your post ended up in moderation. I'm still awake. I allowed it through because I didn't think it's spam. But don't get belligerent just because the automated system got cautious. It's what keeps this site useful
|
|
|
|
|
It's easy you just need to connect it to a 240 volt power supply. That should root it completely.
|
|
|
|
|
Well done bro !!
It's out of use now !! THANK YOU !!
|
|
|
|
|
|
Why bytecode cannot be run in Android?
|
|
|
|
|
|
its related to android application if you know about this please reply
Thank you
|
|
|
|
|
That does not mean anything either.
|
|
|
|
|
Taking the relevant words from your posting this was the results.
bytecode android - Google Search[^]
Learn to do some basic research!
Never underestimate the power of human stupidity -
RAH
I'm old. I know stuff - JSOP
|
|
|
|
|
Because something is wrong with it.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
|
|
|
|
|
how can i show a progress Bar when downloading using download manager and broadcast receiver
|
|
|
|
|
See here and/or here.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
|
|
|
|
|
I am trying to move a checked listview item from one activity to a textview of another activity. But the problem is no matter which item I click, I am only getting textview value of first item(Position) in listview.
Listview code
b1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
SparseBooleanArray checked =listView.getCheckedItemPositions();
ArrayList<String> selectedItems = new ArrayList<String>();
String str = null;
for (int i = 0; i < checked.size(); i++) {
int position;
position = checked.keyAt(i);
if (checked.valueAt(i))
selectedItems.add(String.valueOf(arrayAdapter.getItem(position)));
str = listView.getItemAtPosition(i).toString();
str=str.replaceAll("[^\\d.]", "");
}
Intent i = new Intent(getApplicationContext(), Activation.class);
i.putExtra("contact", str);
startActivity(i);
arrayAdapter.remove(str);
}
});
This is the code of how the listview item is accepted as textview
Intent i = getIntent();
String product = i.getStringExtra("contact");
text.setText(product);
|
|
|
|
|
You are setting the value of str to a new string each time round the loop. So when the loop terminates it will contain the text from the last item in the list.
|
|
|
|
|
Yea, I tried setting the str value outside the loop, but the result's the same.
|
|
|
|
|
You need to do it where you test for a selected item in the ListView.
|
|
|
|