Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8472285
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T17:01:19+00:00 2026-06-10T17:01:19+00:00

this is my code and I am trying to open gallery.. I got error

  • 0

this is my code and I am trying to open gallery.. I got error as stated above

import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.util.Base64;
import android.util.Log;
import android.view.View;
import android.view.Window;
import android.widget.ImageView;
import java.io.ByteArrayOutputStream;

public class ChangeUserImageActivity extends Activity {

private static final int SELECT_PICTURE = 1;

private static final int CAMERA_PIC_REQUEST = 1337;
private Bitmap thumbnail = null;
String img = "";

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.changeuserimage);
}

public void camera_click(View view) {
    Intent cameraIntent = new Intent(
            android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
    startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST);
}

public void gallery_click(View v) {
    // select a file
    Intent intent = new Intent();
    intent.setType("image/*");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(Intent.createChooser(intent, "Select Picture"),
            SELECT_PICTURE);
}

private byte[] imagetoArray() {
    ByteArrayOutputStream stream = new ByteArrayOutputStream();
    thumbnail.compress(Bitmap.CompressFormat.PNG, 100, stream);
    return stream.toByteArray();
}

public void backHome_click(View view) {
    Intent myIntent = new Intent(view.getContext(), Tabs.class);
    startActivityForResult(myIntent, 0);
}

private String decodeUTF8(byte[] bytes) {
    return Base64.encodeToString(bytes, Base64.NO_WRAP);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (resultCode == -1) {
        thumbnail = (Bitmap) data.getExtras().get("data");
        ImageView image = (ImageView) findViewById(R.id.newuserimg);
        image.setImageBitmap(thumbnail);
    }

}
}

Manifest

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.AgricultureTrading"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:label="@string/app_name" android:icon="@drawable/icon">
        <activity android:name="MainActivity"
                  android:label="@string/app_name"
                        android:theme="@android:style/Theme.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>            
        </activity>        
                        <activity android:name=".Tabs"  android:label="@string/app_name"
                android:theme="@android:style/Theme.NoTitleBar"></activity>

                <activity android:name=".PestManagementHomeActivity"  android:label="@string/app_name"
                android:theme="@android:style/Theme.NoTitleBar"></activity>
        <activity android:name=".BuySellHomeActivity" 
        android:label="@string/app_name"
                android:theme="@android:style/Theme.NoTitleBar"></activity>
                <activity android:name=".EnvironmentAdviceActivity" ></activity>
        <activity android:name=".ProfileActivity"></activity>
        <activity android:name=".AddPestActivity"></activity>
        <activity android:name=".AddEnvironmentActivity"></activity>
        <activity android:name=".SelectAdviceActivity"></activity>
        <activity android:name=".PestAdviceActivity"></activity>
        <activity android:name=".SellPriceActivity"></activity>
        <activity android:name=".SellActivity"></activity>
        <activity android:name=".AddEventActivity"></activity>
        <activity android:name=".ChangeUserImageActivity" android:theme="@android:style/Theme.Dialog"></activity>
    </application>
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
 <uses-permission android:name="android.permission.CAMERA" />
 <uses-feature android:name="android.hardware.camera" />
 <uses-feature android:name="android.hardware.camera.autofocus" />

</manifest>

Error

16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime  FATAL EXCEPTION: main
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime  java.lang.RuntimeException: Unable to start activity ComponentInfo{com.android.gallery/com.android.camera.ImageGallery}: android.util.AndroidRuntimeException: You cannot combine custom titles with other title features
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1815)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1831)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at android.app.ActivityThread.access$500(ActivityThread.java:122)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1024)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at android.os.Handler.dispatchMessage(Handler.java:99)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at android.os.Looper.loop(Looper.java:132)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at android.app.ActivityThread.main(ActivityThread.java:4123)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at java.lang.reflect.Method.invokeNative(Native Method)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at java.lang.reflect.Method.invoke(Method.java:491)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:841)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:599)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at dalvik.system.NativeStart.main(Native Method)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime  Caused by: android.util.AndroidRuntimeException: You cannot combine custom titles with other title features
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at com.android.internal.policy.impl.PhoneWindow.requestFeature(PhoneWindow.java:204)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at com.android.internal.policy.impl.PhoneWindow.generateLayout(PhoneWindow.java:2338)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at com.android.internal.policy.impl.PhoneWindow.installDecor(PhoneWindow.java:2545)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:219)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at android.app.Activity.setContentView(Activity.java:1786)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at com.android.camera.ImageGallery.onCreate(ImageGallery.java:113)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at android.app.Activity.performCreate(Activity.java:4397)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1048)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1779)
16:17:28.781    1604    com.android.gallery ERROR   AndroidRuntime      ... 11 more
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T17:01:20+00:00Added an answer on June 10, 2026 at 5:01 pm

    change onActivity result to below:

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (resultCode == RESULT_OK) {
            if (requestCode == SELECT_PICTURE) {
                Uri selectedImageUri = data.getData();
                selectedImagePath = getPath(selectedImageUri);
                System.out.println("Image Path : " + selectedImagePath);
                img.setImageURI(selectedImageUri);
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to open the SMS db (for censor app) with this code: SQLiteDatabase
I'm trying to download an image using this code: from urllib import urlretrieve urlretrieve('http://gdimitriou.eu/wp-content/uploads/2008/04/google-image-search.jpg',
I'm trying to open a new activity using this code: myListView.setOnItemClickListener(new OnItemClickListener() { @Override
I'm trying this code to access a property but it gives me an error:
This code shows the structure of what I am trying to do. import multiprocessing
I'm trying to run this code but this error appear: Uncaught TypeError: string is
I've got this code I'm trying to use to export data from Excel to
I am trying to open a file for an Android app I am making.
This code gives me access denied errors when trying to open previously created file
I am trying to open a writeable SQLite database with this code... public DataAdapterForServieClass

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.