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

App to Record Phone Calls

I have been using ACR by NLL to record my phone conversations on my Verizon S8 running Oreo.

For some reason it seems to only record my side of the conversation many ties (other it does record both sides). I see that there are many other apps to record conversations but it also seems that many of them also only record one side of the conversation many times.

Do you have a recommendation of an app to record both sides of the conversation?


Try using Dingtone, a free VOIP app.
I allows recording of phone calls and works well.

2 Buttons

I tried to create a 2 buttons but when i click options it goes to options and when i click credits it opens options i want to open credits ;-;

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button b1 = (Button) findViewById(R.id.b1);
Button b2 = (Button) findViewById(R.id.b2);
b1.setOnClickListener(this);
b2.setOnClickListener(this);
}
@override
public void onClick(View v) {
switch (v.getId()){
case R.id.b1:
openOptions();
break;
case R.id.b2:
openCredits();
break;
}
}
public void openOptions(){
Intent option = new Intent(this, Options.class);
startActivity(option);
}
public void openCredits(){
Intent credit = new Intent(this, Credits.class);
startActivity(credit);
}

Reviews A little warning regarding the Z flip screen.

I have absolutely no regrets buying the Z flip given its form factor and general performance. I also figured that keeping the screen closed with a decent case gave me as good protection as my galaxy S 10+ with the screen was always exposed.
Unfortunately, while examining the phone at an angle with the screen off, I noticed a smudge on the upper right-hand side of the screen. Cleaning the screen did not remove this very slight smudge. I then realized that it was the precise location of the edge screen "bar". Clearly, frequent usage of the edge screen feature, using just my finger was creating this smudge. Clearly the surface of the edge screen is not as robust as the galaxy S 10+ and users need to be aware of this.
Rather than wait, I promptly ordered a galaxy Z flip screen protector, without investigating the brand, and have been using that for the last several days. It seems to fit well, adhere well and is as sensitive as the naked screen. However time will tell.

Accessing Bluetooth data

Hi all

The device is running Android Lolipop and my question regards accessing device hardware data from an application, this should be straightforward but initial information suggest otherwise. If the devices Bluetooth receiver is paired with a bluetooth transmitter then why would you not use this data directly in an application and instead use another program to " spoof your location" just to provide location services with mock locations so it can use the Bluetooth data provided?

This seems a long winded way of handling data and you risk the data being altered or some loss as it is passed through these other programs. In my case I have a Ublox GPS receiver that transmits location data as an NMEA stream using Bluetooth, now we have two approaches. Application A allows the user to select the data source, one being Bluetooth and this works with location services turned off which greatly helps battery life. Now Application B can only use Location services which means either using the devices internal GPS or going down the so called spoofing route to basically fool it as a get around.

My question is why would anyone develope an application and not use the bluetooth receiver directly? I have thought about this and can only conclude that it must be something to do with the Android OS but it can and has been done so why take the less efficient method? Is it such a complicated task that some developers just use location services to keep it simple.

When I used to program control systems in C we could include different libraries into our code and these provided added functionality, so if I needed a CAN interface or SPI the functionality was there but I don't believe Java uses because it is not processor specific.

thanks Roy

Biden

Purple people bad. Green people are worse. It's all an alien conspiracy. 'bout covers it.

If you folks want to have these discussions, you can't respond to every argument against your beliefs with "propaganda" and "lies." Look into the arguments of the other side, figure out the selective editing of quotes, and debate the underlying issues.

Until then, closed.

Left my $2k camera setup for Samsung S10+ and Gimbal. What do you think of the footage?

I have Fuji X-T3, X-T20 and RX100VA.
They are both super good video cameras.
But many times, I am tired of the weight and transferring footage into the computer and edit them.

I like idea of small lightweight setup. So i went to try out phone + gimbal combo. (S10+, Zhiyun M2 Crane)

For sure the quality is not as good as proper cameras. But the question would be is it 'good enough' for 'casual' youtube mobile users?
Can you see artifacts?


I also did some photos with it.





bluetooth

There are apparently different models of Poblano Hot Pepper phones, some are quite limited and some not but again, what is the model I.D. of your phone? Details can help as every phone model has different capabilities. But since it's still not determined whether this is an Android issue, or a Subaru one, or just a setup/implementation matter, it might help to actually confirm that your phone is supported. Try going here, scroll down and tap on the "Bluetooth Compatibility" link:
https://www.subaru.com/owners.html

How to use pointer capture for MCPE

Hey sorry you can't do that. Android does not use mouse like a computer.

Hmmm, then the Fouk is this?


Pointer capture

Some apps, such as games, remote desktop, and virtualization clients, greatly benefit from getting control over the mouse pointer. Pointer capture is a new feature in Android 8.0 (API level 26) that provides such control by delivering all mouse events to a focused view in your app.

Starting in Android 8.0, a View in your app can request pointer capture and define a listener to process captured pointer events. The mouse pointer is hidden while in this mode. The view can release pointer capture when it doesn't need the mouse information anymore. The system can also release pointer capture when the view loses focus, for example, when the user opens another app.

For information on how to use this feature in your app, see Pointer capture.

SOURCE: https://developer.android.com/about/versions/oreo/android-8.0#pc

Filter

Back
Top Bottom