자유롭게 질의 및 응답을 할 수 있는 게시판입니다. 개발자 여러분의 답변이 큰 도움이 됩니다.
- 제품설치/등록 오류 문의: 설치/등록 Q&A 이용 (제품 구매 고객 한정)
C++ Builder Intent 함수를 이용한 사진 불러오기 및 (파일)경로 취득
2018.11.20 00:54
본 게시판은 개발자들이 자유롭게 질문과 답변을 공유하는 게시판입니다.
* 따라서 최대한 정중하게 질문을 올려 주세요.
* 질문을 상세히 작성해 주실 수록 좋은 답변이 올라 옵니다.
* 다른 분들도 참고할 수 있도록 결과 댓글 필수(또는 감사 댓글)
(결과 댓글을 달지 않는 경우 다음 질문에 대한 답변이 달리지 않는 불이익이 있을 수 있습니다.)
-----------------------------------------------------------------------------------------------
사용빌더 : RAD C++ Builder Tokyo 10.2
안녕하십니까. 다름이 아니라 현재 인텐트 함수를 통하여 이미지를 선택한 다음, 그 이미지의 경로를 취득해서 ShowMessage로 띄우는 프로그램을 짜고 있는데, 경로를 따오기는 커녕 Access Violation만 뜹니다. 현재 개발자 여러분들의 따끔한 조언과 소스코드 첨삭을 절실히 필요로 하는 바입니다.
아래에는 소스코드와 제가 추가한 헤더파일들입니다.
#include <Androidapi.JNI.Javatypes.hpp>
#include <Androidapi.JNI.App.hpp>
#include <Androidapi.JNI.Net.hpp>
#include <Androidapi.JNI.Os.hpp>
#include <Androidapi.Helpers.hpp>
#include <Androidapi.JNI.GraphicsContentViewText.hpp>
#include <FMX.Platform.Android.hpp>
void __fastcall TForm1::Button1Click(TObject *Sender)
{
Androidapi::Jni::Graphicscontentviewtext::_di_JIntent intent = TJIntent::Create();
intent->setType(StringToJString("image/*"));
intent->setAction(TJIntent::JavaClass->ACTION_GET_CONTENT);
MainActivity()->startActivity(intent);
ShowMessage(JStringToString(intent->getData()->toString()));
}
//---------------------------------------------------------------------------
댓글 0
C++ Builder Intent 함수를 이용한 사진 불러오기 및 (파일)경로 취득
2018.11.20 00:54
본 게시판은 개발자들이 자유롭게 질문과 답변을 공유하는 게시판입니다.
* 따라서 최대한 정중하게 질문을 올려 주세요.
* 질문을 상세히 작성해 주실 수록 좋은 답변이 올라 옵니다.
* 다른 분들도 참고할 수 있도록 결과 댓글 필수(또는 감사 댓글)
(결과 댓글을 달지 않는 경우 다음 질문에 대한 답변이 달리지 않는 불이익이 있을 수 있습니다.)
-----------------------------------------------------------------------------------------------
사용빌더 : RAD C++ Builder Tokyo 10.2
안녕하십니까. 다름이 아니라 현재 인텐트 함수를 통하여 이미지를 선택한 다음, 그 이미지의 경로를 취득해서 ShowMessage로 띄우는 프로그램을 짜고 있는데, 경로를 따오기는 커녕 Access Violation만 뜹니다. 현재 개발자 여러분들의 따끔한 조언과 소스코드 첨삭을 절실히 필요로 하는 바입니다.
아래에는 소스코드와 제가 추가한 헤더파일들입니다.
#include <Androidapi.JNI.Javatypes.hpp>
#include <Androidapi.JNI.App.hpp>
#include <Androidapi.JNI.Net.hpp>
#include <Androidapi.JNI.Os.hpp>
#include <Androidapi.Helpers.hpp>
#include <Androidapi.JNI.GraphicsContentViewText.hpp>
#include <FMX.Platform.Android.hpp>
void __fastcall TForm1::Button1Click(TObject *Sender)
{
Androidapi::Jni::Graphicscontentviewtext::_di_JIntent intent = TJIntent::Create();
intent->setType(StringToJString("image/*"));
intent->setAction(TJIntent::JavaClass->ACTION_GET_CONTENT);
MainActivity()->startActivity(intent);
ShowMessage(JStringToString(intent->getData()->toString()));
}
//---------------------------------------------------------------------------