• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Ibochs PC Emulator

Hi i have a problem when i install ibochs pc emulator from third websites and when i open i get installation error application can't start can someone please help i try limbo alll versions and didn't work you can email me at (removed for your protection) thank you and i hope all you and your family are ok

Attachments

  • Screenshot_20210501-124534.jpg
    Screenshot_20210501-124534.jpg
    263.4 KB · Views: 641

App idea

Thanks for the positive feedback. Feel free to forward to someone who could do something with this. I'm actually not looking for anything for myself, I just like to see tech solve real world problems. I did see someone came up with part of this idea in the past year, but have not seen anything about this since then. Actually, I posted this 4 years ago and was told it was not possible at that time. I think it is possible now, just a few thousand lines of code between this idea and greater personal safety. I was thinking of calling the groups "Hives" for what it's worth. Just like colonies of bees, you would only be one phrase away from any of your select hives.

The reason for a phrase is to reduce the chance of mistakenly sending an alert. I might mistakenly say "mouse" someday, but I would only say "succulent mouse" if I wanted to send an alert to my close friends that I am walking home from the bar alone at 2 am and I am afraid. [This scenario pure fabrication by the way. At 2 am I am fast asleep.] The users can use their imagination, or better yet, one part of this app can auto-generate phrases they could use. Word combinations that are not commonly used together like: Green Jupiter, Cow gloves, Ground Bats, etc. Words that are less likely to be misheard by the receiver. You could even add a challenge response like, "Did you just say Green Jupiter?" An answer of "Yes" would send the alert to the group you associated with that phrase. This makes it almost impossible for anyone to know what you are doing and should eliminate the possibility of an accidental alert going out. The people in your hives would likely want you in their hives also. Sort of like an extension of your social network.

alcatel 5041c lockscreen

thats kind of stupid but alright. i just want pictures of my son before he passed
i'm sorry for your loss.

its not really. i'm not saying that you have bad intentions, but it would be the equivalent of us showing a thief how to steal data on a phone and guiding them thru the steps.

the only way to unlock the phone, if you do not have the codes or passwords, is to do a hard reset. and by doing that you will erase all of the data on the phone. your only hope is that the phone has an sd card and the photos have been saved there. if not then you might be sol........sorry

One hint of magic - Chapter 1 of Part 3 now available on Google Play Store!

Finally, the first Chapter of Part 3 is now available on Google Play Store! :D
Here’s the link:
https://play.google.com/store/apps/details?id=callandha.app
I've also added some new features and settings:
-You can now manually save your progress in the settings
-the Character-section has been updated

There is also a new subforum on Reddit to discuss story-related content and more:https://www.reddit.com/r/OneHintOfMagic/
I also sometimes upload additional graphics on my Instagram-profile, if you're interested: https://www.instagram.com/callandha_studio/

This is an interactive text adventure story app, so you can make your own choices to alter the course of the story.
Short overview of the story:
The story is about five girls, who discover supernatural abilities like a special bond to one of the four elements. Laurel, the protagonist, also is repeatingly dreaming about a certain boy, but every time she encounters him in the dreamworld, his face looks unfocused. One day, a shady figure appears in her dreams as well, watching her from the shadows and threatening her. Laurel also encounters four other girls in the real world, who seem to have supernatural abilities just like her, though some of her friends seem closer to the darkness than Laurel might have thought at first gaze. The following days, the five girls meet up regularly and eventually find the way to a hidden school that teaches magic. But not all is as well as it seems. Laurel keeps getting into bad accidents and someday, one of her friends suddenly disappears without a trace. Is this related to the creepy shadows, that lurk around the school? Are they somehow connected to the mysterious school director? The shadows are coming… Can you keep your friends safe from them?

The whole book is parted into six parts and I’m already working on the third part now. A second book is planned as well.

Greetings, Callandha

Attachments

  • lau.jpg
    lau.jpg
    183.2 KB · Views: 286
  • teal.jpg
    teal.jpg
    137.3 KB · Views: 221
  • romy2.jpg
    romy2.jpg
    995.2 KB · Views: 245

I came to the Smart One Please Help me Greendot Debit

https://play.google.com/store/apps/details?id=com.cardinalcommerce.greendot&hl=en
So could you be more specific about the error messages you're seeing when using their app to access your account?

As far as being so averse to using the automated phone tree help service, that's now a typical way a lot of companies do customer support. Follow through the list of options and eventually there could be one to talk to a staffer. But be prepared to put on hold, and maybe for quite a while. Companies are not likely to hire extra people to just sit around waiting to answer calls that may or may not be on demand, so the usual scenario is a bare minimum of people talking actual calls, one by one for hours at a time. Depending on how many calls are also on hold before yours, it could take a while for yours to be answered.
https://www.greendot.com/contact-us
https://www.greendot.com/product-faqs-overview/debit-cards-faq-overview

Listview with custom Adaptor not populating and app returns to previous screen

Hi all

am using a custom adapter for Listview to display the records fetched from database. However when listview activity loads after a couple of seconds it returns to the prior activity without loading listview.

Part of my main activity code is :

for (int i = 0; i < userArray.length(); i++) {

JSONObject jsonObject = userArray.getJSONObject(i);

oid = jsonObject.getInt("oid");

mobile = jsonObject.getString("mobile");

name = jsonObject.getString("name");

arr_oid = oid;
arr_mobile = mobile;
arr_name = name;




}


} else {

Toast.makeText(getApplicationContext(), "Some error occurred", Toast.LENGTH_SHORT).show();
}
} catch (JSONException e) {
e.printStackTrace();
}

myorderadapter adapter = new myorderadapter(MyordersActivity.this, arr_name, arr_mobile,
arr_oid);


listview.setAdapter(adapter);

listview.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Toast.makeText(getApplicationContext(),"this is click",Toast.LENGTH_SHORT).show();

}
});


}



}

//executing the async task
Myorderdetails ru = new Myorderdetails();
ru.execute();



}

custom adapter code is :

public class myorderadapter extends ArrayAdapter<String> {

Activity context;
String rname[];
String rmobile[];
int roid[];
Context c;


public myorderadapter(Activity context, String[] arr_name, String[] arr_mobile, int[] arr_oid) {

super(context, custom_myorder_table, arr_name);
this.context = context;
this.rname = arr_name;
this.rmobile = arr_mobile;
this.roid = arr_oid;

}



@NonNull
@override
public View getView(int position,View view, ViewGroup parent) {


View row = Inflater.inflate(custom_myorder_table, null, true);



TextView orderid = row.findViewById(R.id.lv_item_oid);
TextView custname = row.findViewById(R.id.lv_item_name);
TextView custmobile = row.findViewById(R.id.lv_item_mobile);

// now set our resources on views
orderid.setText(roid[position]);
custname.setText(rname[position]);
custmobile.setText(rmobile[position]);


return row;
};
}




App runs correctly and the listview screen displays the progress bar however before it could show listview populated with data, it simply returns to the previous screen.

past longing

Glad it's working - yes, taking a system backup when the phone is working is not a bad idea ;).

Retrieving texts from a later backup, I can think of 2 things to try:

1) You can selectively restore a recovery backup (e.g. 4Ext). However you can't selectively restore individual apps, just entire partitions. So you could try restoring the Data partition from a more recent backup, and if it worked you'd have your texts back up to the point where that backup was made. The catch is that if the problem that was stopping the phone booting is in the Data partition then you'll restore the problem as well, and have to go back to your earlier backup as well to get it going again.

2) I've not used it for a few years (because my current phone isn't rooted), but the paid version of Titanium Backup (Titanium Backup Pro) can restore individual apps and their data from a recovery backup. So assuming that it works on this ROM (which is still fairly old) then if you could restore the "message storage" app's data from the most recent recovery backup that should get your texts back without crashing the phone again.

Those are the things I can think of anyway.

Help How do i delete items from a sqlite databse?

I am creating a basic app where i can add customers to a database and display them on another screen, i have set up everything using recyclerview and card views to display the customers and that works fine, but im not sure how i set it up so that i can delete the customers. i have added a button to each of the customers that will be used to delete them.

customerDB
Java:
public class CustomerDB extends SQLiteOpenHelper
{
    // defines the database structure
    public static final String DATABASE_NAME = "customerDB.db";
    public static final String TABLE_NAME = "tbl_Customers";

    // creates the database
    public CustomerDB(Context context){ super(context, DATABASE_NAME, null, 1);}

    @Override
    public void onCreate(SQLiteDatabase sqLiteDatabase)
    {
        sqLiteDatabase.execSQL("CREATE TABLE tbl_Customers  " +
                "(Customer_ID INTEGER PRIMARY KEY AUTOINCREMENT," +
                "Customer_First_Name TEXT,"  +
                "Customer_Surname TEXT, " +
                "Customer_Address_Line_1 TEXT,"  +
                "Customer_Address_Line_2 TEXT, " +
                "Customer_Address_Line_3 TEXT,"  +
                "Customer_Postcode TEXT, " +
                "Customer_Phone_Number TEXT,"  +
                "Customer_Email TEXT)");
    }

    @Override
    public void onUpgrade(SQLiteDatabase sqLiteDatabase, int i, int i1)
    {
        sqLiteDatabase.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME);
        onCreate(sqLiteDatabase);

    }


    public long addCustomer (String name, String surname, String address1, String address2, String address3, String postcode, String phoneNo, String email)
    {
        SQLiteDatabase Cdb = this.getWritableDatabase();
        ContentValues contentValues = new ContentValues();
        contentValues.put("Customer_First_Name", name);
        contentValues.put("Customer_Surname", surname);
        contentValues.put("Customer_Address_Line_1", address1);
        contentValues.put("Customer_Address_Line_2", address2);
        contentValues.put("Customer_Address_Line_3", address3);
        contentValues.put("Customer_Postcode", postcode);
        contentValues.put("Customer_Phone_Number", phoneNo);
        contentValues.put("Customer_Email", email);

        long result = Cdb.insert("tbl_Customers", null, contentValues);
        Cdb.close();
        return result;
    }

    public Cursor ViewData()
    {
        SQLiteDatabase sqLiteDatabase = this.getReadableDatabase();
        Cursor cust = sqLiteDatabase.rawQuery("select * from " + TABLE_NAME, null);

        return cust;
    }
   
}

customerAdapter

Java:
public class CustomerAdapter extends RecyclerView.Adapter<CustomerAdapter.MyHolder> {

    private Context context;
    private ArrayList id, name, surname, add1, add2, add3, postCode, phoneNumber, email;

    CustomerDB db = new CustomerDB(context);

    CustomerAdapter(Context context,ArrayList id, ArrayList name, ArrayList surname, ArrayList add1, ArrayList add2, ArrayList add3, ArrayList postCode, ArrayList phoneNumber, ArrayList email){
        this.context = context;
        this.id = id;
        this.name = name;
        this.surname = surname;
        this.add1 = add1;
        this.add2 = add2;
        this.add3 = add3;
        this.postCode = postCode;
        this.phoneNumber = phoneNumber;
        this.email = email;
    }

    @NonNull
    @Override
    public MyHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        LayoutInflater inflater = LayoutInflater.from(context);
        View view = inflater.inflate(R.layout.my_row, parent, false);
        return new MyHolder(view);
    }

    @Override
    public void onBindViewHolder(@NonNull MyHolder holder, final int position) {
        holder.idText.setText(String.valueOf(id.get(position)));
        holder.nameText.setText(String.valueOf(name.get(position)));
        holder.surnameText.setText(String.valueOf(surname.get(position)));
        holder.add1Text.setText(String.valueOf(add1.get(position)));
        holder.add2Text.setText(String.valueOf(add2.get(position)));
        holder.add3Text.setText(String.valueOf(add3.get(position)));
        holder.postCodeText.setText(String.valueOf(postCode.get(position)));
        holder.phoneNumberText.setText(String.valueOf(phoneNumber.get(position)));
        holder.emailText.setText(String.valueOf(email.get(position)));

        holder.delete.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

            }
        });
    }


    @Override
    public int getItemCount() {
        return name.size();
    }

    public class MyHolder extends RecyclerView.ViewHolder{

        TextView idText, nameText, surnameText, add1Text, add2Text, add3Text, postCodeText, phoneNumberText, emailText, delete;

        public MyHolder(@NonNull View itemView) {
            super(itemView);
            idText = itemView.findViewById(R.id.idText);
            nameText = itemView.findViewById(R.id.nameText);
            surnameText = itemView.findViewById(R.id.surnameText);
            add1Text = itemView.findViewById(R.id.add1Text);
            add2Text = itemView.findViewById(R.id.add2Text);
            add3Text = itemView.findViewById(R.id.add3Text);
            postCodeText = itemView.findViewById(R.id.postCodeText);
            phoneNumberText = itemView.findViewById(R.id.phoneNoText);
            emailText = itemView.findViewById(R.id.emailText);
            delete = itemView.findViewById(R.id.btnDel);
        }

    }
}

Customer Class

Java:
public class Customers extends AppCompatActivity {

    RecyclerView mRecyclerView;
    CustomerDB myDB;

    ArrayList<Integer> id;
    ArrayList<String> name, surname, add1, add2, add3, postCode, phoneNumber, email;

    CustomerAdapter customerAdapter;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        getSupportActionBar().hide();
        setContentView(R.layout.recyclerviewmain);

        mRecyclerView = findViewById(R.id.recyclerView);
        mRecyclerView.setLayoutManager(new LinearLayoutManager(this));


        myDB = new CustomerDB(Customers.this);
        id = new ArrayList<Integer>();
        name = new ArrayList<>();
        surname = new ArrayList<>();
        add1 = new ArrayList<>();
        add2 = new ArrayList<>();
        add3 = new ArrayList<>();
        postCode = new ArrayList<>();
        phoneNumber = new ArrayList<>();
        email = new ArrayList<>();

        storeDataInArrays();
        customerAdapter = new CustomerAdapter(this, id, name, surname, add1, add2, add3, postCode, phoneNumber, email);

        mRecyclerView.setAdapter(customerAdapter);
        mRecyclerView.setLayoutManager(new LinearLayoutManager(this));


    }

    void storeDataInArrays() {
        Cursor cursor = myDB.ViewData();
        if (cursor.getCount() == 0) {
            Toast.makeText(this, "No Customers", Toast.LENGTH_SHORT).show();
        } else {
            while ((cursor.moveToNext())) {
                id.add(cursor.getInt(0));
                name.add(cursor.getString(1));
                surname.add(cursor.getString(2));
                add1.add(cursor.getString(3));
                add2.add(cursor.getString(4));
                add3.add(cursor.getString(5));
                postCode.add(cursor.getString(6));
                phoneNumber.add(cursor.getString(7));
                email.add(cursor.getString(8));
            }
        }
    }

}

any help would be appreciated

Lovestruck Game

Hi, I am facing issue that my Google Playstore not working right now and I want to download "Lovestruck" game. I've search alot to find a download link source here https://androidforums.com/forums/android-apps-games.4/ Can anyone please provide me any source from where I can download this game? Thanks,
is it not in the playstore?

is it this game?
Lovestruck Choose Your Romance

Why does my tablet lag too much?

As @ocnbrze said.
This is te main reason that I have never had a tablet.

The fact is, I can get a phone and use it as a tablet for much less money.

Literally, a $40 phone will run circles around a $100+ tablet.

I dont like that fact, but it is what it is.

I pride myself on being able to do more with less, and my devices pale in comparison to the vast majority of those owned by folks on this site.

But I still do more than most do with my devices.

That being said, for the same (or even more) money, I could not justify the loss in performance if I were to use a similarly priced tablet instead of the phones I use.

Filter

Back
Top Bottom