Saturday, June 22, 2013

[General] Android Support Nonexistent?


Android Support Nonexistent?



I tried to find it. REAL support i mean, a form that i can fill in and pose a question, a complaint, and have it answered. Not answers to FAQ'S and more answers to FAQ'S.
Am I doing something wrong or can't Google be bothered listening to criticism, complaints, questions, while trying to make more money and finding new ways to evade taxes?
I mean they must be trying to pick things up from the community somewhere. Here? Are people from Google perhaps actually checking out these fora?
Well I hope so, because i;ve got some more questions and complaints.



.

forum.xda-developers.com

[General] Mass Storage and Undeleting


Mass Storage and Undeleting



Hello,

I was wondering if anyone knows how to undelete files on a Note II? I'm unrooted atm, and lost a picture which I really need back. A lot of the sites I checked say root required.

Thanks.



.

forum.xda-developers.com

[General] How to install Instagram with Video for ANDROID using an .apk file! (Manual Installation) TUTORIAL


How to install Instagram with Video for ANDROID using an .apk file! (Manual Installation) TUTORIAL



Many people on Android havent been able to join in on the new Instagram with Video update because something isn't right.

I've found an APK that works, and I have just created a video tutorial to help ANYONE install it!

My YouTube channel is (devchaube15, just search this on mobile if you need to.)



.

forum.xda-developers.com

[General] galaxy s4 unlocking wont work with att code!!!!!!HELP


galaxy s4 unlocking wont work with att code!!!!!!HELP



Got a samsung galaxy s4 and I called att for the unlock and they gave it to me and I tried it but I get network unlock unsuccessful. I tried the free unlock method but u was told to turn on persha. Then when they tell you to type numbers in the diall pad to see what is locked and what is off I get the emergency calls only message what could this be.ciuld be my sim card because I did cut it diwn into a micro sim



.

forum.xda-developers.com

[General] How can I capture screen on my galaxy tab 10.1?


How can I capture screen on my galaxy tab 10.1?



press and hold the power button, followed immediately by the volume down button. Hold down both until a white border flashes around the edge of your screen and then release.

From my Galaxy Note 2 via Tapatalk



.

forum.xda-developers.com

[General] Email App Icon stuck on 1 Unread Mail


Email App Icon stuck on 1 Unread Mail



I have been having this problem and it has been bothering my for quite a while now.
The Original email app on my galaxy s3 one day decided to become stuck on 1 unread email. Whether i have read all emails or 5 unread emails, the app displays 1 unread email.
I have tried 'Clearing cache' and 'Clear data' several times on both the email app and gmail(Gmail just for the sake of it even though it is unrelated)
also, deleted all my inbox, junk and trash emails online.
However, no matter what i do the icon still displays 1 unread email.

My phone is not rooted and has been and still working perfectly fine apart from this issue.
I know that the issue isn't that big of a deal since technically email and everything is working, but that 1 on the email icon really annoys me.

I have uploaded a screenshot of what i'm talking about just incase i haven't made myself clear.



.

forum.xda-developers.com

[android help] Service doesnot retains screen


Service doesnot retains screen


android - Service doesnot retains screen - Stack Overflow







Tell me more ×

Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

















I am new to android and developing an application which starts with a login page followed by many activities.As soon as the user logs in, a service is started which is stopped only when the user logs out.The purpose of using service is just to keep the application alive when it is interrupted(by some call/message or by pressing home button). But the problem is after pressing the home button if i go back to the application it starts from the login screen(where the service is started) instead of remaining in the same activity.suggest me few methods which i ll need to use .. thanks
















Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.










default






.

stackoverflow.comm

[android help] How to start front facing camera in android Using Camera Intent?


How to start front facing camera in android Using Camera Intent?



I am developing an app in which I want to open front camera on button click (if front camera is present on that device).


I have use this code which works for me on Asus Tablet having OS 3.2.1. But same code is not working on OS 4.2.1.


I want the code which works on all android versions. Please help me in this problem.


Following is my code-



Intent takePictureIntent = new Intent(
MediaStore.ACTION_IMAGE_CAPTURE);

takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT,
Uri.fromFile(f));
Log.v("", "Camera Id-" + camId);

if (!TextUtils.isEmpty(camera)) {
if (camera.equalsIgnoreCase("Front")) {
Log.v("", "Inside if");
takePictureIntent.putExtra(
"android.intent.extras.CAMERA_FACING",
Camera.CameraInfo.CAMERA_FACING_FRONT);

} else {
Log.v("", "Inside else");
takePictureIntent.putExtra(
"android.intent.extras.CAMERA_FACING",
Camera.CameraInfo.CAMERA_FACING_BACK);

}
}
startActivityForResult(takePictureIntent, actionCode);


.

stackoverflow.comm

[android help] null pointer exception at settext


null pointer exception at settext



i want to display my table sql in alert dialog using tablerow with inflater manually make table in score.xml main.java



//table3
Cursor gethighscorealter=highscoreDB.rawQuery("SELECT*FROM HIGHSCORE3"+
" ORDER BY TIME asc, MOVE asc ;"
, null);
if(gethighscorealter.getCount()>0){
gethighscorealter.moveToFirst();
timer= gethighscorealter.getLong(gethighscorealter.getColumnIndex("TIME"));
move = gethighscorealter.getInt(gethighscorealter.getColumnIndex("MOVE"));
grid = gethighscorealter.getInt(gethighscorealter.getColumnIndex("GRID"));
textView31.setText(""+timer);
textView32.setText(""+move);
textView33.setText(""+grid);
}else{
//textView31.setText("-");textView32.setText("-");textView33.setText("-");
}


score.xml



android:id="@+id/table_score"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchColumns="*" >
android:id="@+id/tableRow1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:selectable="false"
android:focusable="false"
>

android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left|center_vertical"
android:singleLine="true"
android:text="TIME"
android:textAppearance="?android:attr/textAppearanceMedium"
/>

android:id="@+id/textView2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:singleLine="true"
android:text="MOVE"
android:textAppearance="?android:attr/textAppearanceMedium"
/>

android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:singleLine="true"
android:text="GRID"
android:textAppearance="?android:attr/textAppearanceMedium"
/>


android:id="@+id/tableRow2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:selectable="false"
android:focusable="false"
>

android:id="@+id/textView31"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left|center_vertical"
android:singleLine="true"
android:text="TIME"
android:textAppearance="?android:attr/textAppearanceMedium"
/>

android:id="@+id/textView32"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:singleLine="true"
android:text="MOVE"
android:textAppearance="?android:attr/textAppearanceMedium"
/>

android:id="@+id/textView33"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:singleLine="true"
android:text="GRID"
android:textAppearance="?android:attr/textAppearanceMedium"
/>




logcat



06-21 14:05:03.169: E/AndroidRuntime(1504): FATAL EXCEPTION: main
06-21 14:05:03.169: E/AndroidRuntime(1504): java.lang.NullPointerException
06-21 14:05:03.169: E/AndroidRuntime(1504): at skripsi.slidame.PuzzleActivity.highscore(PuzzleActivity.java:280)
06-21 14:05:03.169: E/AndroidRuntime(1504): at skripsi.slidame.PuzzleActivity.onOptionsItemSelected(PuzzleActivity.java:143)
06-21 14:05:03.169: E/AndroidRuntime(1504): at android.app.Activity.onMenuItemSelected(Activity.java:2548)


java:280 should be textView31.setText(""+timer); when i checked timer with toast i got the value


it think i got nullexception from textview


oncreate method



public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//db
String DB_PATH= getApplicationContext().getFilesDir().getPath();
highscoreDB = SQLiteDatabase.openDatabase(DB_PATH+slidameBoard.DB_NAME,null,SQLiteDatabase.CREATE_IF_NECESSARY);
new countleft(START_DELAY, INTERVAL);
//sensor
sensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);
sensorManager.registerListener(this,sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER),SensorManager.SENSOR_DELAY_NORMAL);
//lebar
DisplayMetrics displayMetrics = new DisplayMetrics();
WindowManager wm = (WindowManager) getApplicationContext().getSystemService(Context.WINDOW_SERVICE); // the results will be higher than using the activity context object or the getWindowManager() shortcut
wm.getDefaultDisplay().getMetrics(displayMetrics);
lebar = displayMetrics.widthPixels;
setContentView(R.layout.activity_slidame4);
textView31 = (TextView)findViewById(R.id.textView31);
textView32 = (TextView)findViewById(R.id.textView32);
textView33 = (TextView)findViewById(R.id.textView33);
textView41 = (TextView)findViewById(R.id.textView41);
textView42 = (TextView)findViewById(R.id.textView42);
textView43 = (TextView)findViewById(R.id.textView43);
}


inflate method



AlertDialog.Builder showhighscore =new AlertDialog.Builder(this);
LinearLayout layout = (LinearLayout) getLayoutInflater().inflate(R.layout.score, null);//score
showhighscore.setCancelable(false);
showhighscore.setTitle(" ");
showhighscore.setView(layout);
showhighscore.setIcon(R.drawable.menu_icon);
showhighscore.setNeutralButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
dialog.cancel();
onResume();
}
});
showhighscore.show();


.

stackoverflow.comm

[android help] Google Play Developer Console – Alpha, Beta for Paid Apps


Google Play Developer Console – Alpha, Beta for Paid Apps


android - Google Play Developer Console – Alpha, Beta for Paid Apps - Stack Overflow







Tell me more ×

Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

















What about "Paid Apps" as Alpha/Beta testing...


I am uploading one "alpha_version" apk under "Alpha" tab... I have tagged application as "Paid" app and also configured specific prices... (As Google does not allows to change from "Free" to "Paid"). I have also added "Tester" for this alpha version..


My Questions/Confusion:




  1. As my application is "Paid" one - do my "tester group" needs to pay before downloading this "alpha" version




  2. Can I set application mode as "Free" for "Alpha" and latter on make is "Paid" for Production build?




  3. Once I publish this "alpha" version - does it view-able/visible on Google Play store (I am sure it will be for visible for tester only not for all users - right?)




Any help/pointer would be greatly appreciated - Thank You.
















Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.










default






.

stackoverflow.comm

[android help] Development Client Server Android application using java


Development Client Server Android application using java


Development Client Server Android application using java - Stack Overflow







Tell me more ×

Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

















I am network and IT Security student however for my Final Year Project i choose to develop the android application to help people in their medical emergency.i Need the help from basic like what are the component needed for developing the complete application like which server to use.how to connect the application to server, Question 1: how to extract the location from the users and sent to server Question 2: how to input the nearest hospital location i mean in server there should be pre-defined location of hospital( what are the input parameter) and the server need to process the user location with the hospital location and provide the service to user from the nearest location( how to do that math between calculating the nearest hospital to the user). How to code the server side.






















lang-java






.

stackoverflow.comm

Google Voice on T-Mobile? [General]

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