ads

Affichage des articles dont le libellé est Pass. Afficher tous les articles
Affichage des articles dont le libellé est Pass. Afficher tous les articles

dimanche 13 septembre 2015

S6 CPU never pass 1.5 GHz with low benchmark score



i just bought new S6 G920F with 64 GB and stock 5.0.2 android
i found my score lower than in reviews and in other users in Antutu 5 both 32& 64 bit get 57k while it should be 65+ k ,geekbench 3 get around 4400 while it should be 5200 accordong to gsmarena....

any way i updated to 5.1.1 with same results and i found my CPU never get higher than 1.5 GHz :(

whats wrong ??



jeudi 10 septembre 2015

By pass lock screen on reboot



I have a verizon Galaxy S5 on OG5 and when I reboot the phone I am able to access apps prior to the lock screen appearing. On a reboot the homescreen comes up and I can sometimes enter my messages, gchats, or open Pandora for 1 or 2 seconds before the lock screen will appear and read private messages. Is this normal for the device? It seems like a big security hole.



dimanche 6 septembre 2015

S4 Verizon by pass setup wizard



previously i was using S4 i did factory reset on S4 5.0.1 now i am unable to by pass activation through corner and test mode method kindly tell me solution .



samedi 5 septembre 2015

Not rooted after having a pass result using Odin 3



Hi XDA! Please help me with my problem. I'm a newbie in rooting my android. So after I followed instructions in rooting my S6 Edge SM-G925F with the 5.1.1 version of the android using Odin3, SU app is not installed after finishing the steps. but the red seandroid kernel letters are showing at the top of the samsung logo.
:confused:



vendredi 4 septembre 2015

Pass data from one activity to another



Can you help me. I have developed a app with a quiz. When the quiz is finished a new activity (result) appears showing the score. I want to pass the score to a new activity namely score. Here is my code. What is wrong. The score must be showed in a textview.

Result.java

Code:


package app.mobiledevicesecurity;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class Result extends Activity
{

    private static Button playbtn;
    private static Button menubutton;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_result);
        OnClickPlayButtonListener();
        OnClickMenuButtonListener();
        TextView textResult = (TextView) findViewById(R.id.textResult);
        Bundle b = getIntent().getExtras();
        int score = b.getInt("score");
        textResult.setText("You scored" + " " + score + " for the quiz.");
        Intent i = new Intent(getApplicationContext(), Result.class);
        i.putExtra("somevariable",score);
        startActivity(i);
    }

    public void OnClickPlayButtonListener() {
        playbtn = (Button) findViewById(R.id.btn);
        playbtn.setOnClickListener(
                new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                        Intent intent = new Intent("app.mobiledevicesecurity.Quiz");
                        startActivity(intent);
                    }
                }
        );
    }

    public void OnClickMenuButtonListener() {
        menubutton = (Button) findViewById(R.id.menubtn);
        menubutton.setOnClickListener(
                new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                      Intent intent = new Intent(getApplicationContext(), MainActivity.class);
                        startActivity(intent);
                      }
                }
        );
    }


Scores.java

Code:


package app.mobiledevicesecurity;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
import android.content.Intent;

public class Scores extends ActionBarActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_scores);
        Intent intent = getIntent();
        String value = intent.getStringExtra("somevariable");
        TextView txtScore1 = (TextView) findViewById(R.id.txtScore1);
        txtScore1.setText("You scored" + " " + value + " for the quiz.");
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_scores, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}