New deals, rewards and more from Google Play Live
- By Google
- VIP Lounge
- 0 Replies
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.
Yeah, I forgot that feature. 👍an s-pen holder would be one of my reasons to upgrade. i hope that happens with the next generation.
OMG, your answer is 7 years old, but I'm really thankful to you because by switching predictive text off I was able to solve my problem, similiar to the one mentioned aboveThere are two things you may want to try:
First, in Settings, Input and Control, Language and Input. Tap the Gear Icon to the right of the Samsung Keyboard. Try turning off Predictive Text or Auto Replacement. I believe these features include the backspace/delete "feature".
Second, while typing, you'll see the suggested word. As you said a backspace will delete the word. Tap the spacebar first before you back space. That will "accept" the word and the backspace will then work as expected.
Hope this works.
Thanks a lot for your answer!This will depend on what keyboard you are using: your manufacturer's default (which will depend on which manufacturer) or a replacement you have installed yourself. And then depending on the keyboard app this may or may not be possible. Look in the keyboard's settings to see whether it has any option to export data.
However, most keyboard apps don't have any option to export data, and to manually copy the database will require rooting the phone (which will erase the data in the process). Some might let you link your learned suggestions to an account, so that when you sign into the same account from another phone you could use them (this of course also means that the company would have access to these data). So have a look in the app's settings, have a look in your internal storage for any folder that looks like it comes from the keyboard, and have a look in android/data to see whether you can (a) find a folder for your keyboard there and (b) access anything from it. But no promises that this will be possible.
If you are using your manufacturer's default keyboard you should also bear in mind that if the new phone uses a different keyboard it won't be able to read data from your current one - this stuff will all be app-specific.
Op this works like a charm!have you tried this?
Offline Language Translator - Apps on Google Play
Easy and fast translator app to translate between languages even when offlineplay.google.com
so we get this kind of question almost everyday. the problem is that there are millions of apps that have notification icons. so unless it is something popular like facebook or youtube, most of these questions go unanswered.Anyone know what app is the ‘B’ icon notification in android belong to ?
Sorry that I could not help more to solve this issue. Good luck!I tried but that only works when wifi can be turned on and mine can't. I'm just going to try reaching out to Samsung on this one.
Thanks for all your help!👍
No problem with your experience. It was your explanation that made no sense, and you would not consider anything else. That's when I gave up on that thread.
class FabTransformationActivity : AppCompatActivity() {
private val viewModel: FabTransformationViewModel by viewModels()
private lateinit var fab: FloatingActionButton
private var mWindowManager:/*@@psggbk@@*/WindowManager? = null
private class ItemHolder(val parent: LinearLayout, listener: View.OnClickListener) {
val image: ImageView = parent.findViewById(R.id.image)
val name: TextView = parent.findViewById(R.id.name)
init {
parent.setOnClickListener(listener)
}
}
private val menuOnClick = View.OnClickListener { v ->
val name = v.getTag(R.id.tag_name) as String
fab.isExpanded = false
}
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
var params: WindowManager.LayoutParams
setContentView(R.layout.fab_transformation_activity)
val root: CoordinatorLayout = findViewById(R.id.root)
val sheet: CircularRevealCardView = findViewById(R.id.sheet)
val menuHolders: List<ItemHolder> = listOf(
ItemHolder(findViewById(R.id.menu_1), menuOnClick),
ItemHolder(findViewById(R.id.menu_2), menuOnClick),
ItemHolder(findViewById(R.id.menu_3), menuOnClick),
ItemHolder(findViewById(R.id.menu_4), menuOnClick)
)
fab = findViewById(R.id.fab)
WindowCompat.setDecorFitsSystemWindows(window, false)
val fabMargin = 16
ViewCompat.setOnApplyWindowInsetsListener(root) { _, insets ->
val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars())
fab.updateLayoutParams<CoordinatorLayout.LayoutParams> {
leftMargin = fabMargin + systemBars.left
rightMargin = fabMargin + systemBars.right
bottomMargin = fabMargin + systemBars.bottom
}
sheet.updateLayoutParams<CoordinatorLayout.LayoutParams> {
leftMargin = fabMargin + systemBars.left
rightMargin = fabMargin + systemBars.right
bottomMargin = fabMargin + systemBars.bottom
}
insets
}
viewModel.items.observe(this) { items ->
menuHolders.forEachIndexed { i, holder ->
if (items.size > i) {
val _item = items[i]
holder.parent.isVisible = true
holder.parent.setTag(R.id.tag_name, _item.name)
holder.name.text = _item.name
Glide.with(holder.image)
.load(_item.image)
.transform(CircleCrop())
.into(holder.image)
} else {
holder.parent.isVisible = false
}
}
}
fab.setOnClickListener {
fab.isExpanded = true
}
}
override fun onBackPressed() {
if (fab.isExpanded) {
fab.isExpanded = false
} else {
super.onBackPressed()
}
}
}
<androidx.coordinatorlayout.widget.CoordinatorLayout
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/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<!-- A FAB that expands into a sheet. -->
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="16dp"
app:elevation="8dp"
android:contentDescription=""
app:srcCompat="@drawable/ic_add" />
<!--
A sheet that the FAB expands into.
Use CircularRevealCardView to apply circular reveal effect.
-->
<com.google.android.material.circularreveal.cardview.CircularRevealCardView
android:id="@+id/sheet"
android:layout_width="256dp"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="16dp"
android:background="?attr/colorSurface"
android:visibility="invisible"
app:elevation="8dp"
app:layout_behavior="@string/fab_transformation_sheet_behavior"
tools:visibility="visible">
<LinearLayout
android:id="@+id/sheet_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingTop="8dp"
android:paddingBottom="8dp">
<include
android:id="@+id/menu_1"
layout="@layout/menuitems" />
<include
android:id="@+id/menu_2"
layout="@layout/menuitems" />
<include
android:id="@+id/menu_3"
layout="@layout/menuitems" />
<include
android:id="@+id/menu_4"
layout="@layout/menuitems" />
</LinearLayout>
</com.google.android.material.circularreveal.cardview.CircularRevealCardView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
I have the custom Rom, I didn't get to the point of custom recovery. I achieved Root through KingoRoot and used KingRoot as a Root manager. Then I began debloating. At the time, I had no Rom as finding the original firmware became an impossible task. I kept searching, but I bricked the LG L38C while removing the system apps, I must have messed with the wrong one. Literally, right after, I found the custom Rom - LG L38C Turbo. Now I'm trying to figure out how to flash it from basically the logo screen. It does reboot into recovery-factory reset mode, but then just goes back to the logo screen - soft brick.do you still have a custom recovery? did you make a nandroid backup before flashing the rom?