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

HELP

Hello Guys!
i have Galaxy S7 (SM-G930F)
blocked by FRP
Oreo 8.0.0
Stuck On Samsung Logo
i tried many time to upgrade by many firmware (Binary 5)
After Flash passed with Odin
phone reboot
Erasing...
boot to recovery mode and i have this error :
#fail to open recovery_cause (no such file or directory)#
#Reboot recovery_cause is [unknown]#
No support SINGLE-SKU file-based OTA
Supported OTA
Supported API: 3
dm-verity verification failed...

when i put my phone in Download mode and i tried to root or to flash with TWRP
it shown me this error :
Costum Binary Blocked by frp lock

i tried to Wipe Partiotion & wipe cashe
same problem
i loosed my mind
please help me

Apps Unable to decode stream: java.io.FileNotFoundException

Hai, i have problem with my project. i use calling Json data but i found errror like this :
Code:
E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: beasiswa_timur.jpg: open failed: ENOENT (No such file or directory)
MainActivity.java
Java:
public class MainActivity extends AppCompatActivity
        implements NavigationView.OnNavigationItemSelectedListener {
private String TAG = MainActivity.class.getSimpleName();
private ProgressDialog pDialog;
private ListView lv;
private static String url = "https://api.danaberkah.com/v1/home_fundings";
ArrayList<HashMap<String, String>> home_fundings;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
    DrawerLayout drawer = findViewById(R.id.drawer_layout);
    NavigationView navigationView = findViewById(R.id.nav_view);
    ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
        this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
    drawer.addDrawerListener(toggle);
    toggle.syncState();

home_fundings = new ArrayList<>();
lv = (ListView) findViewById(R.id.list);

private class GetContacts extends AsyncTask<Void, Void, Void> {

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        // Showing progress dialog
        pDialog = new ProgressDialog(MainActivity.this);
        pDialog.setMessage("Mohon bersabar...");
        pDialog.setCancelable(false);
        pDialog.show();
    }

    @Override
    protected Void doInBackground(Void... arg0) {
        HttpHandler sh = new HttpHandler();

        // Making a request to url and getting response
        String jsonStr = sh.makeServiceCall(url);
        String JsonStrDonasi = sh.makeServiceCall(donasi_url);
        String JsonStrWakaf = sh.makeServiceCall(wakaf_url);
        String JsonStrTentangKami = sh.makeServiceCall(about_url);
        String jsonStrSyaratKetentuan = sh.makeServiceCall(syaratKetentuanUrl);
        /*Log.e(TAG, "Response from url: " + jsonStr);*/

        /*Home Fundings*/
        if (jsonStr != null) {
            try {
                JSONArray data = new JSONArray(jsonStr);

                // looping through All Contacts
                for (int i = 0; i < data.length(); i++) {
                    JSONObject c = data.getJSONObject(i);
                    String id = c.getString("id");
                    String usr_photo = c.getString("usr_photo");
                    String org_name = c.getString("org_name");
                    String funding_image = c.getString("funding_image");
                    String title = c.getString("title");
                    String end_time = c.getString("end_time");
                    String collected_amount = c.getString("collected_amount");

                    // tmp hash map for single contact
                    HashMap<String, String> contact = new HashMap<>();
                    // adding each child node to HashMap key => value
                    contact.put("id", id);
                    contact.put("usr_photo", usr_photo);
                    contact.put("org_name", org_name);
                    contact.put("title", title);
                    contact.put("funding_image", funding_image);
                    contact.put("end_time", end_time);
                    contact.put("collected_amount", collected_amount);
                    // adding contact to contact list
                    home_fundings.add(contact);
                }
            } catch (final JSONException e) {
                Log.e(TAG, "Json parsing error: " + e.getMessage());
                runOnUiThread(new Runnable() {
                    @Override
                    public void run() {
                        Toast.makeText(getApplicationContext(),
                                "Json parsing error: " + e.getMessage(),
                                Toast.LENGTH_LONG)
                                .show();
                    }
                });

            }
        }
else {
    Log.e(TAG, "Couldn't get json from server.");
    runOnUiThread(new Runnable() {
        @Override
        public void run() {
            Toast.makeText(getApplicationContext(),
                    "Couldn't get json from server. Check LogCat for possible errors!",
                    Toast.LENGTH_LONG)
                    .show();
        }
    });
}
 return null;
}
@Override
protected void onPostExecute(Void result) {
    super.onPostExecute(result);
    // Dismiss the progress dialog
    if (pDialog.isShowing())
        pDialog.dismiss();
                /*
                 *Updating parsed JSON data into ListView
                 */
    /*This HOme Fundings*/
    ListAdapter adapter = new SimpleAdapter(
            MainActivity.this, home_fundings,
            R.layout.list_item_home, new String[]{"usr_photo", "org_name",
            "funding_image", "title", "collected_amount","end_time"},
            new int[]{R.id.icon,
                    R.id.nama,
                    R.id.img_thumbnail,
                    R.id.judul_cardview,
                    R.id.terkumpul_cardview,
                    R.id.tersisa_cardview}
    );
    lv.setAdapter(adapter);
}
}
}
list_item_home.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <androidx.cardview.widget.CardView
        android:id="@+id/card"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="3dp"
        android:layout_marginBottom="4dp"
        android:layout_margin="4dp"
        card_view:cardElevation="3dp">

        <RelativeLayout
            android:id="@+id/top_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/linear1">
                <ImageView
                    android:id="@+id/icon"
                    android:layout_width="24dp"
                    android:layout_height="17dp"
                    android:layout_marginLeft="8dp"
                    android:layout_marginTop="5dp"
                    android:src="@drawable/index"
                    android:layout_marginRight="10dp"
                    android:layout_marginBottom="10dp"
                    android:contentDescription="TODO"/>

                <TextView
                    android:id="@+id/nama"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="5dp"
                    android:layout_marginTop="5dp"
                    android:layout_toRightOf="@+id/icon"
                    android:text="danaberkah.com"
                    android:textColor="@color/text_default"
                    android:textSize="13sp" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/linear2"
                android:layout_below="@id/linear1">
                <ImageView
                    android:id="@+id/img_thumbnail"
                    android:layout_width="match_parent"
                    android:layout_height="180dp"
                    android:src="@drawable/beras_murah"
                    android:layout_alignParentEnd="true"
                    android:layout_alignParentRight="true"
                    android:layout_marginEnd="0dp"
                    android:layout_marginRight="0dp"
                    android:scaleType="fitXY"/>
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/linear3"
                android:layout_below="@id/linear2">

                <TextView
                    android:id="@+id/judul_cardview"
                    android:layout_width="fill_parent"
                    android:layout_height="20dp"
                    android:layout_centerHorizontal="true"
                    android:layout_gravity="bottom"
                    android:textColor="@color/text_default"
                    android:textSize="14sp"
                    android:text="20 Beasiswa Untuk Indonesia Timur"
                    android:textStyle="bold" />
            </LinearLayout>

           <LinearLayout
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               android:id="@+id/linear4"
               android:layout_below="@id/linear3">
               <TextView
                   android:layout_width="wrap_content"
                   android:layout_height="wrap_content"
                   android:text="Telah Terkumpul Rp."/>

               <TextView
                   android:id="@+id/terkumpul_cardview"
                   android:layout_width="fill_parent"
                   android:layout_height="20dp"
                   android:layout_centerHorizontal="true"
                   android:layout_gravity="bottom"
                   android:layout_marginLeft="8dp"
                   android:layout_marginTop="5dp"
                   android:text="129.000"
                   android:textSize="14sp"
                   android:textColor="@color/text_default"/>
           </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/linear5"
                android:layout_below="@id/linear4">

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Berakhir Pada Tanggal : "/>

                <TextView
                    android:id="@+id/tersisa_cardview"
                    android:layout_width="fill_parent"
                    android:layout_height="20dp"
                    android:layout_centerHorizontal="true"
                    android:layout_gravity="bottom"
                    android:layout_marginLeft="8dp"
                    android:layout_marginTop="5dp"
                    android:text="21-02-2019"
                    android:textSize="14sp"
                    android:textColor="@color/text_default" />
            </LinearLayout>

        </RelativeLayout>
    </androidx.cardview.widget.CardView>

</RelativeLayout>
on the display only text data successfully called, but not with the image.

and i have this permission but still not function to display image
Code:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>


Thanks ..

Huawei watch in a loop

I have issues with my Huawei smart watch, i just doesn't boot up ( its in a loop) neither i am able to do factory reset as it doesn't stay on the reset screen even for 2 seconds. Huawei support has been pathetic and unable to understand the issue. However, i noticed if i keep the charger plugged in for some time, i does turn on but the moment you try doing something it just reboots ( in a loop).
Not under warranty!!

Help Voice recorder File mysteriously disappeared from Phone

Hi all. First-time thread starter to this forum and I need a lot of help. So basically about 3 days ago I created a voice recorder file on my phone. I have created thousands before and this one saved to my phone with no problem. It's a file of me singing and of lyrics for a specific song I am writing, I will call it "File A." The next day I listened to it and upon realizing I wanted to develop some of the ideas on the file, I recorded another file of me playing guitar and singing. When I finished recording the second file, which I will call "File B," I decided to rename it to the same name as the what File A is named since it is going to be the same song. See but If anyone has used voice recorder before they will know that voice recorder will stop you from naming a file the same thing as another file. But this time voice recorder did not do this and the rename menu was allowed to leave and it when back to the normal voice recorder list screen. But upon looking at the voice recorder list I saw that File B's name hadn't been changed and was still Voice 594. I tried to rename it again, and upon remembering that a file cannot have the same name as another file, this time to something similar to File A's name. Again, though, File B's name stayed as Voice 594. Upon seeing that it still had not renamed, I decided to close the app, which I know now was a big mistake. File A, which was of me singing and of lyrics, deleted. After seeing how it had deleted, I went through My Files and searched for it to see if it was hidden somewhere but sadly it was not. I then restarted my phone to see if that would help and after that reset app settings. Sadly they both didn't work and the file was still missing. I learned online that I should run file recovery software on the sd card that my voice recorder files were saved to and see if that helps. Sadly all of the 3 file recovery software I used on my sd card all froze in the middle of checking the sd card. I am pretty sure this is because the sd card has bad sectors or partitions in it and upon putting it through a diagnostic tool, many errors and red marks popped up when diagnosing the sd card. After that, I copied the Lost.DIR folder onto my computer and the voice recorder folder onto my computer and ran file recovery software on them both. They finished but when they did, they did not contain the file I was looking for.

That's pretty much all that has happened since I found out the file was missing. I recorded the file in the afternoon of the 25th, it deleted in the early afternoon of the 26th and I haven't been using my sd card for anything but running file recovery software on since the 26th. What should I do or have I done everything I can? Would really like this file back. Thanks in advance.

anybody here sick of gun violence?

look i'm all for the right to bear arms, but i'm tired of these shootings. i do not want to take your guns away, but we need to more control on who gets guns. we need strict control on where you can get it.

my heart goes out to those terrorized and for those who lost someone at the Garlic Festival in Gilroy.

BUT SOMETHING NEEDS TO BE DONE!!!!!!!

i say death to the NRA!!!!!!!!!!!!!!!!!!

Old threads

Back in the day [when I was staff], we tossed around thoughts on old threads and the wisdom, or lack thereof, of leaving them open for new activity. I thought they should be closed.

My reason then was the same as now: new members reply to a 7-year-old thread, thinking they're offering helpful info, until someone comes along and tells them it's from 7 years ago. Or 4 or 9; you get the idea.

When I'm the someone who enlightens the newbie, I try to be polite and 'ha ha, it's okay!' upbeat. But why don't we just lock threads that are >X years old AND have had no activity for Y years? Or some other criteria.

Even if someone thinks they have the same problem as the OP, the truth is...probably not. They're 5 Android versions newer on 8 year newer hardware. What are the odds it's exactly the same issue, with the same solution [if there was one]?

Thoughts?

Help Why some app icons missing when phone in landscape?

After unlock note8 phone, I rotate phone to landscape and I see the usual 5 icons: phone, message, internet, playstore, camera. Phone still in landscape, I swipe up and then swipe left/right and cannot see all the app icons, about 10 to 20 app icons missing.

When the phone is portrait, I swipe up and I can see all app icons.

Do you experience the same thing? Why lesser app icons is shown when phone is landscape? What is the problem with my phone?

Thanks

AMR file voice recording playing but no sound (Samsung Galaxy Note 2)

I need help from someone. See, I've recorded an audio with my phone and surely saved it afterwards. Played back and the whole thing seemed muted. I tried recording again and the voice is back. Is there any way or explanation why the previous recording does not contain any sound? Not even background noises? This does not make sense and I feel super frustrated coz the whole recording is important to me..=( Note: - No earphones are attached during recording. -Bluetooth is off while recording - Tried looking some buttons that I might have pressed or muted but there are none. I'd totally appreciate it if there is someone out there who knows how to fix this.. thanks. P.S. I've noticed that the file is saved in amr format. Tried converting but still to no avail.

Lineage 16 for zmax?

I'm looking for info and help I wana put lineage is 16 on a zte zmax z970 but can't find it found links on XDA but apon looking into it its for z981 or w/e not z970 like it says does anyone know of anyone working in it for zmax or a copy of it or even someone who can help build it for zmax I'm willing to help and pay and even provide a phone I just want android 9 on it

New Galaxy S10-few questions

Just upgraded from a Galaxy S8 to an S10. We bought several extended USB cables for our S8, however when I try to use these to charge the S10, I get a message saying to check the connection. Obviously no problems when I use the cable that came with the phone. I thought they were the same, so I'm confused about the message.

Is there a way to set fingerprint preferences where I don't have to scan my prints if I'm at home or some other trusted location?

Thanks!

Help Extend or prevent USB 3.0 transfer mode timeout

I have a Samsung Galaxy S5 with about 64 GB of photos.
I am unable to transfer them to Windows 10 in USB 3.0 transfer mode.
Steps I'm taking:
1) I put the Galaxy S5 in USB 3.0 mode (it only lasts 5 minutes then cancels out of USB 3.0 mode)
2) From Windows Explorer in Win 10, I copy and paste the Camera folder
3) Windows Explorer begins calculating the time to copy files
4) The Galaxy S5 waits 5 minutes, sees no data transfer, and drops out of USB 3.0 transfer mode
5) Windows Explorer copy, then fails, because phone disconnects USB and re-connects in 2.0 mode

USB 2.0 transfer mode takes HOURS longer for 64 GB of photos.
Is there a way to increase the timeout or prevent the USB 3.0 transfer mode timeout on the Samsung Galaxy S5?
Or is there a way to prevent Windows Explorer from calculating time to copy (which takes longer than 5 minutes)?

Getting word out

If this isn't an appropriate forum please direct me appropriately.

It seems to me that the development part is the easier part of the equation - when you have an app, how do you get out word for people to use it? I'm thinking that simply putting it on the Play store isn't going to get a lot of attention. Do you advertise? Word of mouth? etc. - just wondering what approaches you've seen that worked.

What's a good screen protector?

Hi all,
I just made the switch from the Apple ecosystem to my brand new ceramic white S10+ beauty. I got a screen protector from T-Mobile, but the texture is a little weird (it's not a tempured glass one), and I was wondering what was the best kind of screen protector out there. I've read many have fingerprint sensor issues, so not really sure what route to go.

What Android networking protocols/encryption actively in use?

Can anyone shed some light please? I've been trying to find out what networking protocols (e.g. WPA, WPA2) and encryption standards (e.g. AES/CCMP, TKIP) are actually in active use on some Android devices.

Firstly, all my Android devices are running on either 5.1 or 5.1.1.

My router's WiFi is set-up to be “WPA2 only” (there is not an option to specify the encryption algorithm).

I also have a WiFi extender (a Tenda A9) which does not have any facility to select any standards. The manufacturer's website states “WPA-PSK/WPA2-PSK” and “TKIP algorithm”. Contradictorily, the PDF user guide downloaded from the site states "Mixed WPA/WPA2-PSK, AES to encrypt the WiFi network that ensures the security. Be compatible with the uplink device’s WiFi encryption type: None, WPA-PSK, WPA2-PSK and Mixed WPA/WPA2-PSK" [sic].

I've installed WiFiAnalyzer (open source) from VREM Software Development on the Android devices (I tried various similar apps and this one seemed to give the most comprehensive info).

For the router (regardless of whether connected to the router or the extender) WiFiAnaylzer reported “[WPA2-PSK-CCMP][ESS]”

For the extender (regardless of whether connected to the router or the extender) WiFiAnaylzer reported “[WPA-PSK-CCMP][WPA2-PSK-CCMP][ESS]”. This suggests the manufacturer's website is wrong (and so the user manual is right) – and I would hope that if the extender uses CCMP(AES) for the downlink side, it would also use it for the uplink side (if the router supports it).

But to confound matters, on the Android devices (for the status of the currently active WiFi connection under Settings, WiFi) the following is shown:
When connected to the router: WPA/WPA2 PSK
When connected to the extender: WPA2 PSK​

I can't find anywhere on the Android devices that show the encryption algorithm in use (e.g. TKIP, AES/CCMP).

It is worth noting that all my Windows laptops (Win7, Win10 and even WinXP) are set-up to connect with WPA2-PSK with AES and they connect quite happily to the router and the extender.

So, is there any way to establish the encryption algorithm in use on Android (esp. 5.1 / 5.1.1)? This also begs the question as to what standards does Android even support (e.g. is TKIP sufficiently deprecated that Android does not support it all)?

And any views on the “anomalies” between what WiFiAnalyzer reports and the information from Android's own WiFi connection status screen?

Thanks in advance,
Bazzaman

Themes where to get the images?

Hello!
I ran into a big problem. I want to upload applications to google play. But all my applications do not contain a single image. This is not very good, because applications with pictures are downloaded 10 times more. At first I wanted to download images from pixabay, but they told me that they would ban me if I did that.
They explained to me that I must either use paid images or my own. Since my apps are free, I have no money for paid images.
I began to learn drawing. And I can't draw. I take drawing tools in GIMP / Paint and I don’t know what to do with them. It does not even come out to repeat the lessons. Everything turns out wrong.
I lack imagination, and it is very difficult to draw pictures with a mouse.
I don’t have the money to buy Adobe Photoshop. I do not know what the matter is, but I have not found a single crack of the new version of Photoshop. Previously, there were many. Even in the Russian forums I am banned and refuse to send me a crack.
I don't know what to do, I'm depressed. I sat behind these drawing lessons for a long time. But I can't do anything.
What should I do?

Filter

Back
Top Bottom