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

help drive stopped samsung tab e

Hi, you stated your cellular service is Oi in your profile page, which after looking it up online shows it to be a service based in Brazil. Yes?
https://en.wikipedia.org/wiki/Oi_(telecommunications)
Anyway, your question is a little hard to figure out. I'm guessing it's just a language and phrasing issue so could you ask your question again with a more details please?

How do i disable command blocks outside minecraft?

I accidentaly created 2 command blocks, 1 spawned ender dragons, and the other killed ender dragons. Both always active and repeated. I had a very very beatiful big tnt block there too, and i dont wanna lose it
frown.png
anybody help?
Help my sony Xperia C broke i root chinese apps and ads after i root with iroot installed an Chi com mand windows? v ivivido com mand windows? v ivivido com mand windows?

When and how will communication technology stop?

Yes, it's possible to flip the spin of a particle. But you can't determine the result of the initial observation - it will be up or down with whatever probability the initial state would give - and once you have made that initial measurement the entanglement is broken, so anything you do to the spin afterwards will have no effect on the distant particle.

That's the problem: the distant observer cannot even know whether you have made a measurement of your particle, nor what direction you measured in. You could agree in advance when you would do this and what axis you would use, but that would only allow you to infer what the other person had seen (if you use the same axis, not even that if not). As far as communication goes that's like trying to send a message by flipping a coin and telling the other person which way it lands: since you can't control it it can't encode a message.

Stuff like this is what annoys me about layperson books, they need to tell the whole story, rather than assume I'm we Todd Ed and can't wrap my head around reality. Perfect example, guy at work tells me some group at Harvard slowed the speed of light down to 38 mph, which is just dumb. But duck+ that, and you'll find story after story about that group slowing down the speed of light to 38 mph.

Textra App Without The Ads

What Google told me ...

Updating to Textra Pro.
← Knowledge Base
Textra will ask you 14 days after install if you wish to Upgrade to Pro or continue Free with Ads.
You'll also see an option under Textra settings > Upgrade to Pro.
In the meantime thanks heaps for your interest. We appreciate it.
P.S The cost is US$2.99 or local equiv, this fee is a once only fee.

... Thom

$4.95 2020 October

camera focus is jumping

Hi, I'm trying to film a simple video on phone. You can see in this test video, around 9 seconds in, the video jumps in and out briefly:


It's a slight jump in that video, but I have other videos where this issue is much worse. Seems to be related to auto-focus.

I've tried to record on standard android camera app, and on Open Camera app, but I get jumping no matter what. Also, this happens in low and highly lighted environments.

Even though it's a Samsung, I know phone is lower end. But cheap camcorders 15 years recorded better than this.

Any suggestions on how to prevent this jumping from happening?

Thanks for any help.

System Update 13

I'm not 100% sure, but there should be an option called "Accent color" under Display settings. Maybe try searching for it in the settings. Some people say they don't have that option though, so not sure if you'll have it.

I haven't received the android 10 update yet, so I'm just going by what I've read online.

Thanks, I did find that setting. However, it only changes the color of the buttons and sliders. Still very useful, just different. So thanks for the information.:thumbsupdroid:

Do Front Cameras Reduce Notification Icon Space?

I would think it's negligible on the phones with only one front camera. On phones with two like the S10 5G (think the plus also) it's a significant drop in status notification space in my opinion. I found an article to confirm it and there's a setting to let you turn on a virtual top bezel. Considering these phones are 19:9 aspect ratio and a standard HD video is 16:9 in my opinion turning the virtual bezel on, on the S10+ and S10 5G seems like a no-brainer if you typically have a lot of notification icons. There very small amount of screen space you lose wouldn't really have any functional impact. I think the only downside is some people may prefer to have a display covering the entire screen at the expense of status notification space. Guess I will experiment between the two and see what I end up liking best.

https://gadgetguideonline.com/s10/how-to-use-galaxy-s10-virtual-bezel-to-hide-the-front-camera-cutout-without-using-any-apps

"The hole must keep a certain distance from the curved part. This results in a significantly-reduced area for the status bar. So, Galaxy S10 has to offer the option for you to reduce the number of notification icons on the status bar or even hide/disable the notification icons on the status bar entirely...
If you want to hide the front cutout on Galaxy S10, you can use Galaxy S10 virtual bezel to achieve it at the cost of reduced screen size."

Is there any way to put a ViewPager2 inside an AlertDialog?

I'm losing my mind. Spent over 5 hours rearranging code thinking I was one step away from fixing the issue due to being able to have half the functionality with one parameter change, and the other half of the functionality with a different parameter. I WAS WRONG. NOT CLOSE. I'm hoping you guys can help me.

I'm trying to put a ViewPager2 inside of an AlertDialog that's inside of a RecyclerView. I was going back and forth between having the AlertDialog have the .xml with the ViewPager2 scrolling functionality with the save button not working to dismiss dialog, to having the .xml load, save button work, but no ViewPager2 scrolling. Here's my code for the latter:

editItem()
Code:
{
final AlertDialog.Builder alertDialogBuilder;

inflater = LayoutInflater.from(context);

final View contentEspressoList = inflater.inflate(R.layout.content_espresso_list, null);
//final View view = inflater.inflate(R.layout.activity_espresso_list, null);
final View editItemPageView = inflater.inflate(R.layout.edit_item_page, null);

viewPager2 = (ViewPager2) contentEspressoList.findViewById(R.id.editPager);

alertDialogBuilder = new AlertDialog.Builder(context);

//viewPager2.removeView(viewPager2.getRootView());

alertDialogBuilder.setView(editItemPageView);

final AlertDialog dialog = alertDialogBuilder.create();

viewPager2.setAdapter(new EditViewPagerAdapter(dialog.getContext()));

dialog.show();

saveButton.setOnClickListener(new View.OnClickListener()
{
    [USER=1021285]@override[/USER]
    public void onClick(View v)
    {
        dialog.dismiss();
    }
});
}

EditViewPagerAdapter.java
Code:
public class EditViewPagerAdapter extends RecyclerView.Adapter<EditViewPagerAdapter.ViewHolder>
{
    private String mName;
    private LayoutInflater mInflater;
    private Context ctx;

    public EditViewPagerAdapter(Context context)
    {
        this.ctx = context;
        this.mInflater = LayoutInflater.from(context);
    }

    [USER=1021285]@override[/USER]
    public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType)
    {
        View view = mInflater.inflate(R.layout.edit_item_page, parent, false);

        return new ViewHolder(view);
    }

Filter

Back
Top Bottom