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

Bally Sports fiasco...

  • MLB
  • 10 Replies
Bally Sports Reveals Its Streaming Service Has Surprisingly Few Subscribers Nine Months After Launch Bally Sports Reveals Its Streaming Service Has Surprisingly Few Subscribers Nine Months After Launch | Cord Cutters News
I for one, hope Bally, Sinclair, Disney, all lose their ass on this. Greed will be the end for them.
Also these player salaries are insane and the owners are dumb enough to keep shelling it out.
Gut the MLB, NBA, NHL and NFL and start fresh, in my opinion!

Google docs search doesn't work

Hi
When I try to search for something in the Google Docs app on Android (like something I wrote in one of the docs), it only shows results from some of the documents. There is alot of missing search results (especially for older documents).
This is while connected to the internet. When I'm not connected to the internet, the search results only shows results that are in the title of the document.

Does anyone else have this issue? Why is it happening? And how to fix it?

Thanks

S22 & S23 Good Upgrades From S8?

I am not a phone enthusiast. Just a guy who wants a decent phone. I have a Galaxy S8, and the battery life is not what it once was. It also seems a little slow these days.

I am thinking of getting a Galaxy S22 or S23. Are there any glaring problems with these phones? I don't trust review websites because they seem to rave about everything. I want at least as much battery life as I had back when I bought my old phone in 2017, and I don't want to get bitten in the butt by known issues people only find out about after buying.

Also, should I insist on a new phone? I am concerned that I might end up with something with a worn-out battery or other issues.

What is this stock sound?

Hi all,

This has happened to me before on other and older Android phones.

Every once in a while, I get this random sound alert that I can't identify and it just happens at random times, random intervals, and typically just goes bezerk (sp?) when it does it.

Any ideas?

Thank you in advance guys, I really appreciate it!

Attachments

YouTube screen on Chrome on Android phone turns green.

While viewing a video on YouTube on Chrome on my Android phone, the screen turns green.

I uninstalled Chrome and re-installed it and the issue was resolved initially... only for the issue to recur a little later while viewing YouTube videos on Chrome on my phone.

I uninstalled Chrome once again and reinstalled it but this time the issue was not resolved.

This issue occurs while viewing YouTube on Chrome only.. YouTube works fine while viewing on the app and on Internet explorer but I am so used to viewing YouTube videos on Chrome on my phone.

Could someone please help me out with this?

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

Another free laptop

As my parents are moving to a new home they discovered an older Dell Inspiron "5000 series" lying around. They gave it to me. Not in too bad of shape, and I'm currently wiping it as we speak, and know for sure the battery is doing the '1-3-5 error' code (charging cycles exceeded) but I don't care about the battery anyway. It's more 'modern' than I'm into, although it has the glossy back and not the boring matte plastic back. Not sure of the specs. It runs Windows 10, and I'm resetting it, but wondering if I should just blow it away and put Windows 7 Pro on it like the rest or have it be the one PC in my home collection with an unmodified, unthemed Windows 10 layout. I'm personally not fond of Windows 10 (and to an extent, Windows 11, although it looks nicer to an extent) or its flat design UI, or how it acts like a polite friend ("All your files are exactly where you left them!") but the effort to theme it to look like Vista/7, or the amount of hell that's involved to get drivers to work from Dell's website (the last one was a 2010 Vostro that for some reason the website listed the wrong wifi driver and video driver...took days to sort out). I might just leave this one alone and keep it as another backup. It's in decent shape.

Anyone know of a skeuomorphic Linux distro? I want to avoid the amount of mess that theming Linux entails (tried that one and only needed that headache once!) but hoping there's one distro out there that at least looks like it's from 2010/2011.

Pixel 4a (Verizon and WiFi

In the last few days my Verizon signal has disappeared while at home. No problem because its always been too weak to make a call so all activity is via WiFi via StartLink. But with the Verizon signal disappearing, now texts time out. Browser and phone calls still work but a text shows "Waiting for Connection". I've made no setup changes. Any ideas?

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

Getting Samsung Phone To Easily Answeri Calls

EASILY answering a call should be the first priority of a cell phone. With Samsung it clearly is not. A family member has a Samsung Orbit and regularly misses calls because she can't get the "hold & swipe properly" exactly right fast enough. I have a Samsung J2 as a travel phone and often have the same problem.

I found on Youtube a way to change my J2 to answer with just a "press" using Accessability -> Interaction-Dexterity -> Assistant Menu. But that leaves the Assistant Menu "button" visible and in the way. On the J2 there is still an option to cover and hide it. But that is no longer available on the Orbit so the Assistant menu button is annoyingly always there overlaying something on the screen.

I need to replace my primary cell phone (LG) - it seems that Samsung is about the only reliable Android replacement with somewhat decent support. But I don't want that annoying Assistant Menu button constantly overlaying something. Anyone found a way around this with a current Samsung?

[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.


Help Download images got permenantly deleted without me doing anything, Help!

I have a Huawei Mediapad tablet M5 lite 10. I left it to charge through the night (it wasn't powered off, was just closed) and the next day when I opened it and went to gallery my downloads were in the process of being deleted! They were turning into blank images and going to the recently deleted folder, and the weirdest thing was, they were also being permenantly deleted? I'm dumbstruck because they deleted ALL of my downloads (I had 834) except a few downloads left over, maybe 6 pictures. People suggested turning auto-delete and automatic storage cleaner option off, but I can't find those options anywhere on my device. I also did not clear my storage recently. I did not back up my photos anywhere. Why did this happen and how can I prevent this from happening again? Can I get back my photos? Help!


Edit: I have just realised that my downloaded documents and audios are gone too! It seems that all of the files I downloaded from the web are permenantly deleted, why did this happen???

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.

Is there any sign before a battery explode?

I have heard about battery in smartphones exploded, but I did not study the details.
Now, I am going to replace my battery, but since the model is a bit old, there is no way to replace it with the original battery, so chances are I am probably getting a generic battery or even a counterfeit one from a shop that fixes smartphone,

Is there any sign before a battery explode, or could it happen without any sign? Then it would be so dangerous!

Samsung A14 5G random 'red alert sound'

That's exactly what it is. A sound very similar to a Star Trek Red Alert from the original series. this phone randomly makes this 'whoop whoop' alert sound once, and nothing is on the screen. last time it was when it was charging, today it just did it in my pocket. Nothing is listed in recent notifications and there is no such sound in the list of 'notification sounds'. I can't think of any app that makes this particular sound and I'm quite involved in what I allow to make noise on a smartphone (only calls, texts and emails, everything else is set to either block notifications (I hate status bar clutter) or silent/minimized.)) There should only be three items that make sound and with sounds I select (thanks to whomever told me a month or so back to move any downloaded sounds into the 'notifications' folder). None involve any red alert sound. I got emergency SOS and Wireless Emergency Alerts all turned off. It's not a disconnected from watch sound as my watch remained connected.

Is anyone familiar with this particular anomaly with Samsung's modern phones? Also, it's not a low battery sound as the phone is still 90% charged.

Samsung Eco System

Hi folks,

New here so forgive me if this isn't in the right area of the forum. I'm all Samssung in terms of Android and recently was gifted a Tab s8+ - great device, but I'm told I can get more out of it? I hear about this Eco system and have watched some videos on YouTube but it still baffles me so coming to the experts here!

Can I use my Note 20 Ultra as a second device/screen i.e. drag files across like I would when I use the tab as a secondary extended or just secondary screen with my laptop?
I tried Samsung Flow and both devices are on the same WiFi but the smart view option allowing me to use my phone on my tab only work when I switch the WiFi from on my tablet to the phones hotspot. Why is this? is this normal?
Samsung's Dex - what is the benefit of using the tab in this mode as opposed to how it is in regular mode?
I have some Galaxy buds Live, should they be able to connect via blue tooth to both phone and tablet?
I'm also looking at potentially purchasing a smart watch (samsung model) and I hear there is a new model. Has anyone tried it? is it worth the money? I don't want to overspend for the sake of it.

Any other tips and tricks you can share are much appreciated :)

Filter

Back
Top Bottom