ads

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

samedi 19 septembre 2015

HELP: kodi stuck in "working" when trying to generate list of movies or tv shows



Hi all,

I'm rather new to Kodi and my amazon fire TV. It came pre installed with everything so I never had to tamper with it until now.

About a week ago I noticed that when I go into for example 1channel -> movies or TV shows , then try to go into one of the sub categories such as "date released", "date added", or when I do a "search", that it would just be stuck with the logo "working" on the bottom right corner of the screen.

Now the shows that I've added to my Favorite list still works. When I go into them the links show up, and it streams.

I've tried searching for this on Google but didn't come up with much. I decided to update Kodi to 15.2 via the FIle Manager method (so I don't have to use a computer), Kodi is now updated but the issue didn't go away.

This problem doesn't just exist with 1channel, but also icefilms, phoenix, xkmovies etc.

Please helppppppp!!



vendredi 11 septembre 2015

WiFi search shows up no networks



has anyone else run into this issue? my wifi seems to be on the fritz. a week ago i could search and add new wifi networks just fine. however, recently my wifi only connects to previously saved networks. when doing a search, it shows up completely blank. what's peculiar is that when i downloaded "wifi analyzer" from the play store, and did a search, i can see the wifi networks all perfectly fine. it's just the wifi search within settings shows up NOTHING.



Why video sound comes out so bad in live shows?



Hey guys, yet another try to record video in a live show... And again.. The audio of it comes so ****ty and distorted.

So i don't expect any solution from oneplus anymore. I even tried to take the microphone gain a little which didn't really helped so i guess it's just the mic isn't so good.

Any ideas how to get good audio in loud environments? I just don't think it's legit that an iPhone 4 can peform good in these kind of environments when the OPO (which is a better device a hundred times) cannot do such simple thing.



mardi 8 septembre 2015

The Wrong Activity Shows Up Android Studio



Can anybody help me. I have developed a quiz app. At the end of the quiz the result activity must show up but the scores activity shows up. The scores activity only shows up when the scores button is selected on the MainActivity.

Quiz.java


Code:


package app.mobiledevicesecurity;

import java.util.List;

import android.app.Activity;
import android.content.Intent;
import android.graphics.Typeface;
import android.media.MediaPlayer;
import android.os.Build;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class Quiz extends Activity
{
    List<Question> questionList;
    int score = 0;
    int qid = 0;
    Question currentQuest;
    TextView txtQuestion, scored;
    Button button1, button2, button3;

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_quiz);
        QuizHelper db = new QuizHelper(this);
        questionList = db.getAllQuestions();
        currentQuest = questionList.get(qid);
        txtQuestion = (TextView) findViewById(R.id.txtQuestion);

        button1 = (Button) findViewById(R.id.button1);
        button2 = (Button) findViewById(R.id.button2);
        button3 = (Button) findViewById(R.id.button3);

        scored = (TextView) findViewById(R.id.score);



        setQuestionView();

        button1.setOnClickListener(new View.OnClickListener()
        {
            @Override
            public void onClick(View v) {
              getAnswer(button1.getText().toString());
            }
        });

        button2.setOnClickListener(new View.OnClickListener()
        {
            @Override
            public void onClick(View v) {
                getAnswer(button2.getText().toString());
            }
        });

        button3.setOnClickListener(new View.OnClickListener()
        {
            @Override
            public void onClick(View v) {
                getAnswer(button3.getText().toString());
            }
        });
    }
    public void getAnswer(String AnswerString)
    {
        if (currentQuest.getAnswer().equals(AnswerString))
        {
            score++;
            scored.setText("Score : " + score);
        }
        else
        {

            Intent intent = new Intent(Quiz.this,
                    Result.class);
            Bundle b = new Bundle();
            b.putInt("score", score);
            intent.putExtras(b);
            startActivity(intent);
            finish();


        }
        if (qid < questionList.size()) {
            currentQuest = questionList.get(qid);
            setQuestionView();
        }
        else
        {

            Intent intent = new Intent(Quiz.this,
                    Result.class);
            Bundle b = new Bundle();
            b.putInt("score", score);
            intent.putExtras(b);
            startActivity(intent);
            finish();


        }
    }

    private void setQuestionView()
    {
        txtQuestion.setText(currentQuest.getQuest());
        button1.setText(currentQuest.getOption1());
        button2.setText(currentQuest.getOption2());
        button3.setText(currentQuest.getOption3());
        qid++;
    }
}


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 intent2 = new Intent(Result.this,
              Scores.class);
        Bundle bun = new Bundle();
        bun.putInt("score", score);
        intent2.putExtras(bun);
        startActivity(intent2);
        finish();
    }

    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);

        TextView txtScore1 = (TextView) findViewById(R.id.txtScore1);
        Bundle bun = getIntent().getExtras();
        int score = bun.getInt("score");
        txtScore1.setText("score:" + " " + score + " 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);
    }
}





lundi 31 août 2015

Samsung S4 constantly losing connection, but still shows connected.



My girlfriend's AT&T S4 loses connection, but still shows it connected. So you never know you don't have a connection until you reboot the phone and find that you have missed 2 phone calls, 3 emails, and 15 texts. This happened with the stock Rom. I've tried a couple of different roms, but still the same outcome. I'm thinking I should have to switch to a different modem, but I'm not sure which one to use. Am I wrong and is there another solution? I'm looking for something that will work so I don't have to mess with it again. If anyone has experienced this connection loss and found a solution, please let me know what to do to fix this phone.



dimanche 30 août 2015

My Xperia z1 is shows as a z3!



Ages ago I was doing some stuff with flashtool on my Xperia z1 and in flashtool and my pc it shows as z3.. My model number shows as D6603. I want to get back to my old firmware which was 4.4.4 and my model number was c9603. I want to be on lollipop but cannot update OTA or using pc Companion as I get an error (2003). I downloaded a stock firmware of Sony Xperia z1 c9603 and tried flashing using flashtool but just stays on "preparing files" if anyone can help me get back to z1 firmware then please help me:) also I know it's a z1 I have as I brought it brand new. Thanks



vendredi 28 août 2015

the screen shows vertical lines



Hello,

For some time I have a screen problem when the phone heats up, the display shows vertical lines and I have my phone let stand until cool, but today I was travelled and my phone was exposed to the sun while I was using, and when it was heated, vertical lines appeared and when I touched the screen, nothing happened, I turned off the phone, remove the battery and put back and even now I can not use the phone, when I turn the screen I use, a few moments later, the screen colors change as if the screen had melted. I've got TWRP RECOVERY, when I go into the recovery, I can not touch options, I have to flash CWM to be able to handle with buttons volumes. What's the problem ?