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

What is this stock sound?

Its a stock sound of some sort. As I said, I've had it happen on multiple Android phones and OS versions, and it just starts happening all of the sudden. This is the first I've been able to record it.

It's random enough that safe mode won't help. I could have the phone on for days and nothing, then one day it just does it for about 2-4 min or so, then stops. I'd have to operate in safe mode for a month or more.

But when it happens, its annoying AF. That's why I'm asking.

Current phone: TCL REVVL 5G model T790W
android version: 11
Build: RKQ1.210209.002

Developer mode is turned on.

YouTube screen on Chrome on Android phone turns green.

well your phone Galaxy J7 Nxt came out in 2015. its very old now. so current apps may not run as well on your phone. you will find that weird things like this may happen more often as the phone gets older. if the youtube app works just fine, i would just use that going forward. i see no fix for this issue.....especially if you uninstalled and then reinstalled chrome and you are still having issues. there is no phone setting that will fix this......so.....either get a new phone, or deal with using the youtube app.

Samsung A14 5G random 'red alert sound'

I used to have the America Online 'You've got Mail!" alert as my text tone. Once I also had a Star Trek LCARS theme (the UI of The Next Generation onwards) that included the computer voice alerts. I had it saying stuff such as 'Incoming transmission!' for incoming calls, and 'Warning! Deterium levels are fluctuating beyyyyyoooonndd acceptable tolllllerrrrrances' for low battery alerts. In the early 2000s and into late 2012 I was extremely heavy into Star Trek. Pretty much all the series at the time. I got so involved that aside the theme I even had Tasker + AutoVoice set up to do a local offline computer voice assistant, using sound effects and voice clips from the Enterprise computer.

Currently my phone has the Galaxy SII sounds set up from the ringtone to the text tone. They're like traditions for me.

I have revived my Galaxy Nexus!

Still lasts longer and doesn't look like every other crossover on the street. It was also far more comfortable on a long trip. Modern cars have too many LCD screens burning my retinas and they are not comfortable on a long trip at all. Numb butt is a common issue and pain in the back. They don't make cars comfortable today. They're just computers on wheels, and all look the same with the same choice of bland colours.

Is it so wrong to want variety back in the world? I suppose you prefer it Klaus Schwab's way, where everything is a 'modern' homogenized mess, where 'you will own nothing and be happy' while having everything on a subscription model, and all vehicles must be electric and limit mileage where seeing a distant relative is now a thing of the past (I would never see my girlfriend again since she lives 530 miles away from me, and no EV can go over 250-350 without an 8-hour recharge cycle and you're not getting that on the interstate) and I want nothing in my vehicle connected to any cloud, forced software updates on me, or worse, being monitored by God-knows-who, I've heard stories of Tesla owners who had their range artificially limited due to 'unauthorized mods' and who knows? Maybe I have an opinion that's a bit right of wing and they limit my mileage so I can't 'spead hate speech' which is really speech that someone doesn't like these days. Me outright saying 'i think deer hunters are no different from Ted Bundy' might get that EV they want to force on me to no longer go past 60 miles.

I am sorry but I will end my own life before succumbing to that hellscape of a world. Black Mirror is supposed to be a warning, not a user guide for governments.

FYI EVs and banning incandescent bulbs ain't gonna stop climate change. Not when at least 18% of greenhouse gas emissions (if you trust the ag lobby's figure, the world bank claims it's at least 51%) comes from animal agriculture alone, which is more than all forms of transportation combined. The whole 'zero carbon' can't exist in the modern world without us giving up electricity and going back to a 19th Century lifestyle, and even then you'd have carbon emissions. People today are nuts thinking they can achieve that, especially when many today consume more than ever in the past--look at the people who can't go a couple of years without getting a new smartphone that isn't any better than their old one.

Another free laptop

Found the perfect distro for that laptop. Apparently, Q4OS uses a DE known as Trinity that looks straight out of 2008. Out of the box it's got a default theme that resembles Windows 10, but has a ton of built-in themes that can restore classic KDE3 UI design, and comes preloaded with all the period correct apps such as Konquerer, Kmail, Amarok, and Synaptic. Unfortunately, it doesn't include or support IceWeasel, an older Firefox clone. It instead came with Quantum-Firefox which I hate and promptly uninstalled.

Happy 9th Birthday!

Not just Kitkat, in Marshmallow those apps are also white. The settings menu is also white, and the Verizon variant has no Samsung Internet browser (just Chrome). Now some AT&T variants have a dark settings menu, and some different UI designs for the phone dialer, but that is on both Kitkat and Marshmallow. The only things they added or changed in Marshmallow are the icon frames, floating action buttons, and the Material dialog boxes. Everything else was pretty much untouched. I think the S4 got more changes when it got Lollipop.

Need help with RecyclerView

Hi everyone. I am still trying to build a database app with a RecyclerView. I have followed a tutorial from here:

The app runs, creates the database, and saves records. Note that the name is the primary key so you cannot save duplicate names. My problem with this is the same as the first app I tried to build. That is, when I try to view the data, it only shows the first record. The format of the display is OK but only the first record is shown. I can't seem to figure out what triggers a new row in the RecyclerView. I have attached a text file containing all the code for the various parts of this demo. I could surely use some help in figuring out what's missing.

Thanks

Attachments

Help!: What wrong with this code?

I am a newbie to coding with Android Studio / Korlin.
To get started I am trying to build a simple app that give a Treeview of the internal storage of the device its run on (In the AVD I am using a Pixel 6 Pro - 34.

The below code build and I can create the APK and deploy it, but opening it, it closes instantly.
This is starter code which I will look to build upon once I have a running starting point, but as youll see, that isnt what I presently have (LOL)

MainActivity.KT:

package com.example.treeview

import androidx.appcompat.app.AppCompatActivity
import androidx.core.content.ContextCompat
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView

import android.content.Context
import android.os.Bundle
import android.os.Environment
import android.util.Log
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.ImageView
import android.widget.TextView
import android.widget.Toast

import java.io.File
import java.util.ArrayList

class TreeViewActivity : AppCompatActivity() {
private lateinit var recyclerView: RecyclerView
private lateinit var files: MutableList<File>

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_tree_view)

recyclerView = findViewById(R.id.recycler_view)
recyclerView.layoutManager = LinearLayoutManager(this)

files = ArrayList()

// Get all files from internal storage
val internalStorage = Environment.getExternalStorageDirectory()
val allFiles = internalStorage.listFiles()
for (file in allFiles) {
if (file.isDirectory()) {
files.add(file)
}
}

// Create a TreeViewAdapter and set it to the RecyclerView
val adapter = TreeViewAdapter(this, files)
recyclerView.adapter = adapter
}

class TreeViewAdapter(private val context: Context, private val files: MutableList<File>) :
RecyclerView.Adapter<TreeViewAdapter.ViewHolder>() {

private val inflater = LayoutInflater.from(context)

override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
val view = inflater.inflate(R.layout.item_file, parent, false)
return ViewHolder(view)
}

override fun onBindViewHolder(holder: ViewHolder, position: Int) {
val file = files[position]
holder.textView.text = file.name

// Check if the file is a directory
if (file.isDirectory()) {
holder.imageView.setImageResource(R.drawable.fileinfolder)
} else {
holder.imageView.setImageResource(R.drawable.files)
}

holder.itemView.setOnClickListener {
// Do something when the file is clicked
Toast.makeText(context, "File clicked: " + file.name, Toast.LENGTH_SHORT).show()
}
}

override fun getItemCount(): Int = files.size

class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
val textView: TextView = itemView.findViewById(R.id.text_view)
val imageView: ImageView = itemView.findViewById(R.id.image_view)
}
}
}

Activity_Tree_View.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />

<TextView
android:id="@+id/text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@String/no_files_found"
android:visibility="gone" />

</LinearLayout>


Item_file.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />

<TextView
android:id="@+id/text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@String/no_files_found"
android:visibility="gone" />

</LinearLayout>


Build.Gradle (App):

plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}

android {
namespace 'com.example.treeview'
compileSdk 33

defaultConfig {
applicationId "com.example.treeview"
minSdk 24
targetSdk 33
versionCode 1
versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary true
}
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.3.2'
}
packagingOptions {
resources {
excludes += '/META-INF/{AL2.0,LGPL2.1}'
}
}
}

dependencies {

implementation 'androidx.core:core-ktx:1.10.1'
implementation platform('org.jetbrains.kotlin:kotlin-bom:1.8.0')
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
implementation 'androidx.activity:activity-compose:1.7.2'
implementation platform('androidx.compose:compose-orlin:2022.10.00')
implementation 'androidx.compose.ui:ui'
implementation 'androidx.compose.ui:ui-graphics'
implementation 'androidx.compose.ui:ui-tooling-preview'
implementation 'androidx.compose.material3:material3'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.recyclerview:recyclerview:1.3.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation platform('androidx.compose:compose-bom:2022.10.00')
androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
debugImplementation 'androidx.compose.ui:ui-tooling'
debugImplementation 'androidx.compose.ui:ui-test-manifest'
}


Anyone that can help get this to actually run on the AVD I would be very appreciative...

Bill

Best similar / closest to Samsung Galaxy Note 8 apps

XWidget also has a ton of the Samsung widgets (I am not sure if they ever updated to fix the bug in Android 12+ where the widgets stop refreshing though).

Samsung Internet and Samsung Notes will install on any phone, not just Samsungs. Samsung Health also works on non-Samsung phones. You won't get Messages, Gallery, Contacts, Phone Dialer or the like as those depend on specific OneUI APIs that don't exist on another phone. You can possibly find alternatives that are similar, but like my attempt at "Samsung-ifying" my Nexus 6, you'll end up with a half done attempt that won't ever feel right or complete.

I am not sure why you didn't choose another Samsung phone, such as one of the A-series, as they're cheap, work well and have the same UI design.

[APP] Mountain Landscape Wallpaper - the best live wallpaper 2023?

Mountain Landscape Wallpaper

ic_launcher_msc_free.png
Experience the breathtaking beauty of live wallpapers that bring stunning mountain landscapes to life on your screen.

msc_free_1024_500_2.jpg

Mountain Landscape Live Wallpapers immerse you in the serene beauty of heavenly landscapes, where the grandeur of mountains and the depth of lakes blend in perfect harmony. Enjoy the captivating beauty of nature with Mountain Landscape Live Wallpapers.

msc_phone_rotate.jpg

Feel the tranquility of this idyllic spectacle, where majestic pink sakura delicately hangs over picturesque lakes, creating a sense of serenity and peace.

msc_phone_1.jpg

Now, with the Mountain Landscape Live Wallpapers app, you can meditate anywhere and anytime, combining the pleasure of observing enchanting mountain landscapes with the soothing sounds of nature (quick double-tap anywhere on the screen to play/pause the sound).

msc_phone_sound.jpg

The automatic day and night mode system allows you to enjoy the app at dawn, noon, in the radiance of sunset, and at any time of the day as the lighting changes.

msc_phone_2.jpg

Key Features:
• Detailed customization options
• Automatic background change over time
• Nature sounds and nightingale's melody (quick double-tap to toggle sound playback)
• Animated sky, clouds, and rainbow
• Dynamic reflection of the sky in lakes
• Moving 3D camera (tilt your device for a 3D effect)
• Animated butterflies
• Large air balloons
• Shimmering stars and meteors
• Battery-efficient performance
• High-quality textures
• 3D parallax effect
• Three types of animated birds


Immerse yourself in the beauty of mountain landscapes with Mountain Landscape Live Wallpapers. Let this app turn your device into a window to the magnificent world of mountains and lakes. Allow yourself to enjoy the glitter, shine, and beauty of live wallpapers wherever you are.


Problem with APK file

Please ignore this post. The problem seems to have gone away.
but I can’t find a way to delete it.

Noobie here. I installed Android Studio flamingo and followed a couple of tutorials on youtube. My latest effort involves experimenting with the Recyclerview. I have tried running it on a couple of different virtual devices and it runs OK until I try to launch the activity that has the Recyclerview. Then I get this error:

Failed to measure fs-verity, errno 1: /data/app/~~pmpCKyqulePUBHTy7ke96g==/com.example.recyclerdemo-480zG4iexej-Wk4snRDEjQ==/base.apk

So far I have not been able to find enough info about APK files to even know where to look.

Can someone help please? Much appreciated.

Filter

Back
Top Bottom