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

I Need Help With Android Programming

Hello friends. I'm using Android Studio. I'm in the process of learning. My English is not very good. I translate with Google Translate. Now I have a question for you. I want to develop a trial app. Only a date will be entered when the application is first opened. For example, 1/1/2020 date. But only this. When the date 1/1/2020 is entered, it will be switched to another interface. Here will enter a name that I have already set. A name like Tom. If the tom name is entered, the system will accept the name correctly and a new interface will be opened. In here video will be played. When the video is finished it will automatically switch to a new screen. How do I make this application? Please help. I have to finish by August 16th. I said my English wasn't very good Please write in a way that I understand when translating with Google Translate. Thank you for your support. Greetings from Turkey.

lots of OS updates recently?

hi,
...checked for updates last night ...and since then i think it has been through about 8 updates! :/

...i did check and update when i got the phone a few days ago and it did the expected update then

wasnt expecting this many updates so soon .... seems a lot

anyone else getting them? .... or is it just catching up :D ... i recall a date from march 2019 in one of them .... mainly security ones

cheers
dan

RecyclerView Scroll Listener

Hi friends I will hide the header contained in the recyclerView according to the scrolling level and make it visible. But I couldn't find a listener I could use for this.
The setOnScrollChangeListener method always returns 0.0.
The addOnScrollListener method returns acceleration-sensitive dx and dy values.
I think I need to process the RecyclerView according to the alignment of the y values. Any suggestions?

Hiding root status is safe or not?

The mobile banking apps couldn't be downloaded to rooted devices. So some apps like Magisk Manager will help to hide the root status from those apps and download it anyway. I would like to know this method is safe or not? Because they restricted the rooted devices for a reason. Even though its ability to hide it from the app its couldn't change the fact that it is a rooted device.

So can someone please explain to me this situation?

Whatsapp Web via mobile internet modem

Hi!

I recently got a mobile 4G Modem as my main internet connection due to moving to a more rural area. The internet coverage is great, everything works. download free ringtone at: https://ringtonesfree.info/

BUT. The modem fails to run whatsapp web, when both - PC and phone are connected to it. When refreshing the web page on the PC, it says "Trying to reach phone. Make sure your phone has an active internet connection."
When only PC is connected to the modem, but the phone is using it's own data - everything works flawlessly. Mp3 ringtones download at: phoneringtones.info

The provider doesn't see any problems on their end.

So, has anyone had the same problem? Are there any suggestions to try?
Of course, I have tried to restart all my devices. Android ringtones: https://klingeltonemp3.info/

Pet Foods

Sirloin flavored Dog food, Filet Mignon. Really ? Dogs have No concept of cuts of meat Or that Humans pay a ridiculous amount of money for meat. You could smother a dried up hot dog in lard and to the dog it is HEAVEN !!! What aboutvthe QA folks at ALPO tasting the food ? ' Wow, this gruel DOES taste like a Sirloin from one of Wulfgang Puck's reataurants !!! 😃

MMS VCF problem in message app in S7

I am trying to send contacts vcf file as mms from galaxy S7 to another S7, but it appears as text file instead of vcf file in message app even though send as mms option is selected. The message app displayed vcf file in the format below. Due to this, contacts cannot be saved directly.

Begin: Vcard
Version:...
N:...
FN:Tel:0400..
End: Vcard

Has anyone ever see these symptoms before and / or know if there is anything I can do to diagnose / fix the problem.

Thanks in advance.

Screen Protector on sale

I received an email from Whitestone. They have the great screen protector that didn't have a warranty and charged $50. I purchased it before I knew about the lack of warranty. It is a great protector. I purchased it a few weeks after getting my phone and it is still perfect. No scratches or fingerprints and it doesn't interfere with my Ringke cases. A now, the full kit is on sale for $35.99. Then with their discount code of SCHOOL45, it comes to $19.80 including shipping. I purchased a second one just in case.
Here is the link for our phone:
https://www.whitestonedome.com/search?q=LG+V40

Submitting an App To Google Play

So after 6 months in the making, my app is now just about finished. I am now trying to role out an Alpha on google play.

I did this by:
1.) Submitting the required graphics.
2.) Submitting the signed bundle files.
3.) Filling out the Permissions Declaration Form

Then an hour latter, get this message (image1).
image1.png


Then reviewed my manifest file...didn't see anything wrong. See code:
Code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.mjsintegrated.rsamessenger">

    <uses-permission android:name="android.permission.SEND_SMS" />
    <uses-permission android:name="android.permission.READ_SMS" />
    <uses-permission android:name="android.permission.RECEIVE_SMS" />
    <uses-permission android:name="android.permission.READ_CONTACTS" />
    <uses-permission android:name="com.android.vending.BILLING" />

    <application
        android:allowBackup="true"
        android:name="com.mjsintegrated.rsamessenger.MyApplication"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name="com.mjsintegrated.rsamessenger.PurchaseApp"
            android:label="Purchase"
            android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"></activity>
        <activity android:name="com.mjsintegrated.rsamessenger.Help"
            android:label="Help"
            android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"></activity>
        <activity android:name="com.mjsintegrated.rsamessenger.Contacts"
            android:label="Contacts"
            android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"></activity>
        <activity android:name="com.mjsintegrated.rsamessenger.Login"
            android:label="Login"
            android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"></activity>
        <activity android:name="com.mjsintegrated.rsamessenger.Signup"
            android:label="Signup"
            android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"></activity>
        <activity android:name="com.mjsintegrated.rsamessenger.ManMess"
            android:label="Manage Messages"
            android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"></activity>
        <activity android:name="com.mjsintegrated.rsamessenger.ManKeys"
            android:label="Manage Keys"
            android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"/>
        <activity android:name="com.mjsintegrated.rsamessenger.About"
            android:label="About"
            android:parentActivityName="com.mjsintegrated.rsamessenger.MainActivity"/>
        <activity android:name="com.mjsintegrated.rsamessenger.MainActivity" android:windowSoftInputMode="adjustPan" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <receiver android:name="com.mjsintegrated.rsamessenger.SmsBroadcastReceiver">
            <intent-filter>
                <action android:name="android.provider.Telephony.SMS_RECEIVED" />
            </intent-filter>
        </receiver>
    </application>

</manifest>

So, I decided to resubmit it to google. Just by following the instruction and not selecting "Default Phone Handler" in the Permissions Declaration Form.

But an hour later, I get this in my email (image2):
image2.png


It's still complaining about some "default phone handler", but I never mentioned anything like that in the declaration form or the manifest. I can't contact the google support team..and there seem to be no help on the internet. How do I fix this issue?

My experience with androids

In feb.2016 city officials broke my door down claiming they had a warrant when u asked to view the doc. I was never given opportunity...

7 more ths later I find myself being arrested for poss...dayted from thier actions that day in Feb .

I was totally ignorant to comp,software,hardware,etc...

I lost access to my email accounts repeatedly
I had over 200 different phones in the last 3 years trying to figure out where my security breach was coming from and why my photos that proved my innocents kept disappearing.
I changed phone numbers,device types,carriers,emails,all simultaneously&/singularly but it only got worse...

And I will post in another post what all I have learned but I will continue this story

I kept noticing my phones files were always changing from original files to files with the prefix "com."
Every file did this and even when I renamed it it would systematically create the file I renamed back to "com."×××××××

I was being tracked and only found out through sending device statistics to Google before sending it and reading it

I would get messages from 5 digit numbers like u would your carrier and they would be encrypted and un readable
Then one day I started texting back different sets of DOS commands because my photos,communications,were being altered. I started getting crazy results back things that a normal civilian should not have like which 2 judges were working at the local magistrates office and the schedule for the magistrates judges for the entire year 7months out and the police wouldn't or couldn't do anything about it no matter what or how many reports I made

I know,can prove,and have witnesses their were people coming g in my home while I wasn't there and I could never catch them later explained by geofencing my device but as far as security goes I am yet to believe that any OS is more secure than any other

I am still having issues with call interception,and false updates being prompted to me, appli actions being rewritten,

I have beat the charges brought against me in 2016cr5079b February 23,2016 the day law enforcement violated my civil rights . it wasn't easy to prove my innocence .
Bottom line
If you control someone's communications you control thier life..
And seems like no one cares unless it's happening to them
But that's how I felt

Help MailDroid is not syncing periodically

I've purchased MailDroid Pro to connect to my email account via IMAP. I've also excluded the app from battery optimization and don't have data cap set up on my smartphone (Galaxy S9+ on Android 9.0, no root).

When I have the app set to stay connected in Connection Management, then notifications are working fine. However, I'd rather prefer MailDroid to check mailbox every 10 minutes, so I set up some rules to synchronize periodically (the interval at the bottom defines the frequency of checks I suppose?) - see the picture.

QiRTSJQ.jpg


Once I do that, I usually get only the first message in those 10-15 minutes, after more time (e.g. 30 mins) I'm not receiving notifications for further emails. I need to open the app and refresh to download a new email. Do you have an idea what the reason is?

Firebird vs Camaro

If GM brought back the Pontiac Firebird / Trans-Am, do you think it would outsell the Camaro ? I drove a '79 Black Trans Am in high school and I would definitely buy a late model one if they were mass produced. The concept ones are way too pricey to get right now.

Help Sorry, Process System isn't responding

Hi all,
so I powered on my Ascend Mate 7 this morning after charging it for a while, and up popped a message:

Sorry, Process System isn't responding. Would you like to close it? Wait/Ok.

But when you try tapping the screen to select an option it is unresponsive and will not respond to any input. Also when I try to restart the device to bypass this it is just rebooting to the same message and is completely unresponsive. Is there any way of fixing this other than buying a new phone? Any solutions or ideas appreciated. Thanks in advance

What is YOUR Main Recipe ?

Mine is Grilled smoked Ham and smoked Provolone stuffed chicken breast. I butterfly and lightly pound a chicken breast and marinate it in Italian dressing for a couple of hours. Then I remove them and place the ham and cheese on them and then roll them and sear them seam side down over hot coals ( yes, on the grate ). Then I move to cool side of grill, close lid and let cook for 18-20 minutes. Very tasty and juicy !

Dual SIM

I've been trying to understand how Dual Sim works on S10

i. Can you set which one is the 'primary' SIM?

ii. Will it switch to the SIM with the strongest data signal - or do you have to do this manually. or can it be programmed to switch across when there is no data signal on the 'main/ SIM care.

Mirror

description.png

Now you can use your camera as a mirror with lighting, focus, exposure controls.
Shave, put on makeup, check your haircut, hairstyle and do many other things with this amazing and useful reflection app.

★ Features ★
✔️ One finger gesture to сontrol brightness
✔️ Light frame for working in the darkness
✔️ Amazing, high quality reflection - as much as possible what the front camera of your device is capable of
✔️ Bright and clean visibility
✔️ Simpler to use than your phone's camera
✔️ Useful tool for makeup, shaving, haircut or checking your hairstyle

It's free, amazing, reflection app with minimalistic clean interface. It much simpler to use than your phone's camera.

Google Play link

QsHtsQ9sRoMDAKHLVGigbLQMWqbKMV66zxRBLHaZJrFrYTi4GW5c14ymVmKmiM3KZPs=w1536-h754-rw
X3NXSOUW_9vH1gXOsZkAMlmP7ImDf6_xYk1J24WhDsPP-t_R78_5Jy6w0olxlRUGyQ=w1536-h754-rw

New to programing

Hello there all, before you spam me remember we were all beginners at one time or another. Ok with that said I am NEW to programming all together, but I want to learn and I have some ideas that I can not find an app for so I want to do for myself.

Now I have NO programming background, a little HTML and in that I mean LITTLE. So I have read that in todays world it is fairly easy to learn to do this, so I decided to go to the source and start with the forum that came up when I typed Learn Android Programming forums, and well here I am.

So please be honest with me, I am 52 years old so my mind is not as sharp as a 25-year-old, so might take me a while but I am willing to take the time as I am retired and just sit around watching YouTube all day anyways.

Thanks in advance for your help.

Abdulah

Filter

Back
Top Bottom