Samsung AI - a big "MEH" not worth the money
Microsoft is a lost cause. Heck NOTEPAD and PAINT now have Copilot embedded in them! S24 Ultra and content to patiently wait for Samsung to innovate again (not holding my breath).
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Other than ebay or Craigslist, maybe FB Marketplace, and that's a risk of stolen phones that are blacklisted... manufacturers have really locked down bootloaders and rooting is near impossible on anything besides Pixel devices
I decided n0t t0 disp0se 0f any big apps, besidess s0metimes it is my 0wn d0ing by tapping it. ann0yance I did this five times yesterday and still will n0t functi0ned right.. Eh thanks f0r the help.
Plan B is keep my S24 Ultra for yet another year. It's a perfectly good phone (I was going to keep it anyway for the camera).Is there a plan B?
So glad your problem was resolved. What was the suggestion that lead to the restoration of you lost calendar events?
override fun createLayout(target: FrameLayoutBuilder) { instance = this with(target) { addLinearLayout { setOrientationVertical() add(ActivityHeader()) createContent(this) add(ActivityFooter()) } } } private fun createContent(target: LinearLayoutBuilder) { with(target) { addFrameLayout { setLayoutWeight(1f) addLinearLayout { setOrientationVertical() addFrameLayout { setLayoutWeight(1f) addSurfaceView { setSurface(Playground) } addRelativeLayout { setGravityBottomRight() addTextView { setVisibleFalse() formatHint(this) addReceiver(Playground.hint) { setTextId(it) setVisible(it != R.string.Empty) } } } } createInfoLine(this) } addFrameLayout { addReceiver(overlay) { replace(it) } } } } } fun formatHint(target: TextViewBuilder) { with(target) { setTextSizeSP(20) setTextColorID(R.color.hintText) setMarginsDP(50, 10, 20, 20) setPaddingsDP(20, 10) setGravityRight() setGradientBackground { cornerRadii = getCornerRadii(getPixelFromDP(15).toFloat()) setStroke(getPixelFromDP(6), getColorFromID(R.color.black)) setColor(getColorFromID(R.color.hint)) } } } fun createInfoLine(target: LinearLayoutBuilder) { with(target) { addLinearLayout { setOrientationHorizontal() setPaddingsDP(10, 0) setBackgroundColorId(R.color.black) addTextView { setWidthDP(100) setLayoutWeight(1f) setTextSizeSP(16) setTextColorID(R.color.white) setFontId(R.font.nunito_bold) addReceiver(Playground.mode) { setText( when (it) { Play -> "Build Mode" else -> "Play Mode" } ) } } addTextView { setWidthDP(100) setLayoutWeight(1f) setGravityCenter() setTextSizeSP(16) setTextColorID(R.color.white) setFontId(R.font.nunito_bold) setText("V${BuildConfig.VERSION_CODE}") } addTextView { setWidthDP(100) setLayoutWeight(1f) setGravityRight() setTextSizeSP(16) setTextColorID(R.color.white) setFontId(R.font.nunito_bold) addReceiver(Playground.currentBoardIndex) { setText("Board ${it + 1}") } } } }}