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

Convert Webpresence (Wordpress/FBpage/etc) to Android App - Please Recommend

Hi.
I am seeking recommendations for easily creating an Android app which uses an existing self-hosted Wordpress site or Facebook page as a "backend"; other platform suggestions welcomed.
The most important functions will be:
- user ability to create subscriber account (wp), or follow/like (fb).
- user ability to create a post.
- user ability to comment on a post.
- user ability to like and/or upvote a user comment.

i have tried appypie, appmaker, and ibuildapp so far. but none have ability to like or upvote submitted comments, that I can see.

thanks!

Help Pixel 4 and Ford Sync

Annnd.... Just like that, it's fixed. For anyone that had any doubt that the Pixel 4 supports text messaging on Sync with My Ford Touch systems... Doubt no longer. I can now confirm that it works.

Even though I had done it several times before with no luck, I decided to try insanity and repeat the process of deleting and re-pairing the phone to the system expecting a different result. This time, insanity won! Or, I won. Either way... It worked. I'm not sure what I did differently, or if luck decided to smile upon me just this once, but all is good now.

Bluetooth can be super fickle, especially when you consider car makers use the cheapest bluetooth version they can.

Glad you got it working!

Notifications during calls

My previous phone was an S8, my current phone, a 10e. I work in a loud shop, so my call and text notifications are intentionally loud and long. Was a time, when I was on a call, if a text came along, I would get a vibe as a notification. Seems reasonable right? But since one of the late summer updates, my 8 began blasting my notification in my ear while on a call, at whatever volume it was set at, usually full crank. Can't hear what's being said while it's bending my ear drum. I never found a setting for this, and needless to say, it's obnoxious. And my 10e does the same thing, and I still can't find a way to change it. Amongst the several things I don't like about the latest iterations of Pie, this is the most aggravating. Does anyone have this problem or can offer a solution? tia, zz03

No 4G LTE (Straight Talk) US996 on 10F

No matter what I try, I can not get 4G LTE to show up on my phone. I put my SIM card in the wife's phone and 4G LTE works perfectly.

FWIW, it used to work just fine; I've verified all my settings (APN, etc) in the phone (I'm using the Verizon Network thru ST), BTW. Can someone verify the correct NETWORK TYPE setting?? Global or ???

As an aside, I enter my IMEI on Verizon web page and it says my phone will not work on their network; funny I was using the phone on their network for a year until I switched to ST.

Anyone??

Thanks...... Boowho??

samsung gt-19100 android 4.1.2 update...

Thanks! I will check out that link and maybe get it right... I think i must take my time to get this thing sorted out. Maybe i buy another phone before i try some of those roms so if it goes wrong i have that as a life saver then... or if i get tired i just keep using this same old thing.
i think getting a newer phone is a great idea. i would look into a phone that has a minimum of 32gb with 3gb of ram to start. 16 gb storage would work as well, but you will run into space issues very quickly.

App Inventor Navigation drawer & Google Maps

Greetings!

I just started working on a faculty project which is an app for quickly renting bicycles from anyone willing to give them. For this, I'm going to use the Google Maps API. I managed to launch a Google Maps application and now the next step would be to add navigation drawers, buttons and other items on top of it (or shrink the map's size on the screen).
How should I proceed?

Thank you!

Apps How can I force a button to be at the bottom of the screen?

Hello all, I am trying to design an activity but I am having problems trrying to put the button at the bottom of the screen. ¿How can I do it?
This is my XML file:

Code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/linearLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">


    <TextView
        android:id="@+id/tvAViajar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginTop="56dp"
        android:layout_marginEnd="56dp"
        android:layout_marginBottom="25dp"
        android:text="@string/actividades"
        android:textColor="@color/colorPrimaryDark"
        android:textSize="28sp"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/tvDestinoViaje"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginTop="10dp"
        android:layout_marginEnd="56dp"
        android:text="@string/destinoActividad"
        android:textSize="22sp" />


    <EditText
        android:id="@+id/etDestinoViaje"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginEnd="56dp"
        android:layout_marginBottom="12dp"
        android:ems="10"
        android:inputType="textPersonName"
        android:text="@string/etdestinoActividad" />

    <TextView
        android:id="@+id/tvFechaViaje"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginTop="6dp"
        android:layout_marginEnd="56dp"
        android:layout_marginBottom="5dp"
        android:text="@string/fechaActividad"
        android:textSize="22sp" />


    <EditText
        android:id="@+id/etFechaViaje"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginEnd="56dp"
        android:layout_marginBottom="15dp"
        android:ems="10"
        android:inputType="textPersonName"
        android:text="@string/etfechaActividad" />

    <TextView
        android:id="@+id/tvHoraViaje"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginTop="10dp"
        android:layout_marginEnd="56dp"
        android:layout_marginBottom="5dp"
        android:text="@string/horaActividad"
        android:textSize="22sp" />

    <EditText
        android:id="@+id/etHoraViaje"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="35dp"
        android:layout_marginEnd="56dp"
        android:ems="10"
        android:inputType="textPersonName"
        android:text="@string/ethoraActividad" />

    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:background="@drawable/ripple_effect_primary"
        android:text="@string/buscar_actividades"
        android:textColor="@color/white" />


</LinearLayout>

And this is how it looks like:

Captura.PNG


Thanks all.

Dropbox alternatives?

It was a spiel from Google that really got me motivated to start acting on this. It was their offer for additional storage [above the 15GB we get just for having Google accounts]. It said 100GB was $19.95 per year, 200GB for $29.95(?), and then it shot up to 2TB.

I've had a 1TB Dropbox account for years, but awhile back they upgraded it to 2TB--and increased its price. I don't want or need >1TB, nor do I want to pay for it.

I'm leaning toward Google, but wish they had something in the middle--more than 200GB but less than 2TB.

Another Googly problem

Full shit mode? :eek:

Excellent! This is being added to my running file of useful Android info. :)

Full something mode, hahaha.
Not poop, but maybe a word that I did not realize would be censored.

Poop works fine, though.

Anyway, glad to have been of some help.
There are many, many different devices, each with different features and functions.

So the more knowledge we share about how to work around all these different devices, the better.

It actually took the installation of an app for me to even find this, and I spent the better part of 6 months trying to avoid long pressing the circle navigation button.

Thanks to Greenify, it was located and delt with.

Mhl help

Hi*, new here. Just bought the z4, love the phone. But it does not have MhL compatibility. Is there a way to convert this to be MhL compatible? Can this be rooted to make this happen?
I use my phone for teaching, so my ability to play videos and movies on a TV is Paramount. I have no internet or wifi being that I live in the country. Anyone please help

Help 'Facebook upload failed - Tap for options' message

Hi all. I keep getting the above message/notification. I don't know what upload it is referring to, and when I 'Tap for options' all I get is a screen saying I don't have any pending stories.
Top left there's a <left arrow> to 'Your posts' which just takes me to my phone's home screen, and top right a camera icon which takes me to the photo gallery. If I cancel out of this the message has gone, but it keeps returning.
How do I get rid of this annoying message permanently?!
TIA
= = = =
Answer: I too had this problem; I did not like seeing that there was no solution yet. THIS is what worked for me; I am not saying it is THE solution, it is just one way to get around the annoying (and repetitive!) message: “Facebook upload failed - Tap for options” yet there were no options! I uninstalled Facebook from my phone; went back to Play Store & Reinstalled it. Problem gone.


Note: there is a Technipage listing titled: “Facebook for Android: Clear Stuck Uploads – Technipages” which eventually said to, in Android settings to “CLEAR DATA”. Not being a super-tech, I did not like the ominous warning which came with that; I did not want my Facebook data cleared; contacts cleared, etc.

SO, I realized that my laptop version of FB would survive the removal from my phone. Which is what led me to Uninstall from the phone, and Reinstall. It Worked!

Filter

Back
Top Bottom