help: google play store can not search anything
|
|
Read more
forum.xda-developers.com
|
|
forum.xda-developers.com
I have successfully rooted my Galaxy S3. I verified this with Root Checker and also was able to download Titanium Recovery. I then continued by downloading the Cyanogenmod version for my SGH-T999. The next step was for me to boot up to Clockworkmod recovery. That's where the problem persists, I can't boot up to clockworkmod recovery. I did it before when I finsihed with Odin after downloading my SiperSU .zip file but now everytime I press Volume up, center home and the power button it boots up to "Android recovery" and i have done this multiple times now.So I can't backup and restore and I can't boot up the cyanogenmod .zip file on the SD. Any help would be appreciated. Thanks
Posted via Android Central App
forum.xda-developers.com
Hi,
This summer I went to Africa for a month in July and while I was there my phone started not working properly. Whenever I turned it on, it would be realy slow and would freeze and a bunch of "Unfortunately the process com.google.process.gapps has stopped" messages would pop up. When I got home I tried to download apps from the play store but whenever I opened the play store it would immediately crash. I tried downloading apps off of google chrome and the internet instead, but when they said that the apps would download they never did. I am still experiencing these problems and dont know to fix them or if i can. it still freezes a lot of the time and i still cant use play store or download any apps at all. the only app i have downloaded since was through utorrent.
Thanks,
http://cdn-forums.androidcentral.com...milies/sad.png
forum.xda-developers.com
Press the menu button, then Settings, then Apps, and look under the Downloaded list. Can you find Pocket Fort there? If you can see it, tap it and select Uninstall.
It's possible that some other app you installed might have some shady code in it that downloads other apps, or places shortcuts on your homescreen that look like apps you've downloaded, but are in fact shortcuts to some website promoting useless stuff. I suggest uninstalling any recent apps you may have installed. As a last resort, you could always do a complete factory data reset, which wipes the phone and starts all over again (so obviously, back up all of your data first!). To reset, go to Settings/Backup & Reset/Factory Data Reset.
It may be helpful to install a security app like Lookout or Avast. Viruses aren't a huge problem yet on Android, but malware writers are always finding new ways to mess up people's lives, so I always think it's prudent to install a good security app.
forum.xda-developers.com
I didn't have any problems with it until late last year. phone wouldn't charge unless I had the wire in a certain position. I tried switching to a generic cable, but that didn't help either. even so, the phone would still charge, so it was good enough.
but a few days ago, my phone started beeping constantly while giving me the "plug your charger in" message. now it hardly charges unless my phone's off, and it loses battery life while it's charging charge when it's on. I've tried switching cables and outlets, but nothing seems to be helping the issue.
forum.xda-developers.com
Hi All,
This is my first thread in Androidcentral.
From the last few days My Nexus S Phone's USB storage automatically turns on whenever I connect it to a PC.
Also, the "Turn Off USB Storage" option is visible only for microseconds whenever I try to access it from the Notification bar.
The Only option to gain USB Storage back on phone is to reboot the Phone.
My phone is Rooted with CyanogenMod 10 running Jellybeans ver 4.1.1
Please help .
forum.xda-developers.com
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
I am using OnTouchListener to capture multitouch events for ex. a 3 finger tap , I could able to detect up to 2 fingers. i.e
| ||||
There are some apps that allow you to use more than 2 fingers. Try looking for: piano apps, keyboard apps. | |||
default
stackoverflow.comm
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
I want to convert relative layouts in a ListView .So that i can repeat the data as much as many times i get data from the server .The layout id that i want to be in a listview are XML
| |||
default
stackoverflow.comm
Touch listener not work. I need to drag the image over screen and drop to previous position itself.
For that i write the code as below:
class Mylistener implements OnTouchListener{
@Override
public boolean onTouch(View v, MotionEvent event) {
MarginLayoutParams marginParams = new MarginLayoutParams(v.getLayoutParams());
layoutParams2 = (RelativeLayout.LayoutParams) v.getLayoutParams();
//int left=0,top=0;
switch(event.getActionMasked())
{
case MotionEvent.ACTION_DOWN:
startx=(int) event.getRawX();
starty=(int) event.getRawY();
System.out.println("ACTION DOWN: "+startx+","+starty);
break;
case MotionEvent.ACTION_MOVE:
int left = (int) event.getRawX() - (v.getWidth() / 2);
int top = (int) event.getRawY() - (v.getHeight());
marginParams.setMargins(left, top, 0, 0);
RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(marginParams);
v.setLayoutParams(layoutParams);
break;
case MotionEvent.ACTION_UP:
marginParams.setMargins(startx, starty, 0, 0);
layoutParams2 = new RelativeLayout.LayoutParams(marginParams);
System.out.println("ACTION UP: "+startx+","+starty);
v.setLayoutParams(layoutParams2);
default:
break;
}
return true;
}
}
But it drag over the screen and not drop in the previous position. Please provide me any help
stackoverflow.comm
as you see in the content model of wep-app:
Content Model : (((description*, display-name*, icon*)) | distributable | context-param | filter | filter-mapping |
listener | servlet | servlet-mapping | session-config | mime-mapping | welcome-file-list | error-page | jsp-config |
security-constraint | login-config | security-role | ((env-entry*, ejb-ref*, ejb-local-ref*, ((service-ref*)), resource-
ref*, resource-env-ref*, message-destination-ref*, persistence-context-ref*, persistence-unit-ref*, post-
construct*, pre-destroy*)) | message-destination | locale-encoding-mapping-list)*
it is a sibling of servlet
not a child:
ProcessReg
ProcessReg
pract123
jdbc:odbc:practODBC
config
stackoverflow.comm
Cursor cursor = contentResolver.query(uri, null, null, null, null);
cursor.moveToFirst();
String filePath = cursor.getString(cursor.getColumnIndexOrThrow(MediaColumns.DATA));
Unlike other folders like Camera, Screenshots, Foursquare etc.., The Pictures from Picasa folder have less no.of columns, of which
_data
is not there
and Hence I get the Exception:
java.lang.IllegalArgumentException: column'_data' does not exist
There is a column named picasa_id
and a Constant in android:
MediaStore.Images.Media.PICASA_ID
Will that help in getting the correct image path?
Also if I had to download the image from the folder and save in my-app-images folder and then get the actual path. How will I even know that the image URI is from Picasa?
stackoverflow.comm
Google Voice on T-Mobile? So I recently switched from a GNex on Verizon to a Moto X DE on T-Mobile. I had always used Google Voice for my v...