2014년 3월 19일 수요일

[android] html에서 전화걸기

assets폴더아래 call.html파일

[call.html]
<a href='tel:012-345-6789'>Tel : 012-345-6789</a>

[call.java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        mWebView = (WebView) findViewById(R.id.callWebView);
        mWebView.setWebViewClient(new InternalWebViewClient());
        mWebView.loadUrl("file:///android_asset/call.html");
    }
    private class InternalWebViewClient extends WebViewClient {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
             if (url.indexOf("tel:") > -1) {
                startActivity(new Intent(Intent.ACTION_CALL, Uri.parse(url)));
                return true;
            } else {
                return true;
            }
        }
    }

manifest에 퍼미션 추가.
1
<uses-permission android:name="android.permission.CALL_PHONE" />

위의 내용을 추가하면 전화기능이 없는 기기로 마켓에서 검색을 하면 해당앱이 검색되지 않기 때문에 아래의 내용을 추가.
android:required = false 는 꼭 필요하지는 않다는 뜻! 
즉, 전화기능이 없는 앱도 지원기기에 속하게 된다.
1
<uses-feature android:name="android.hardware.telephony" android:required="false"/>

2014년 3월 18일 화요일

[android] url scheme 사용하기 (웹에서 앱 호출 및 앱에서 앱 호출)

[호출될 앱]
다른 앱이나 웹에서 호출될 앱의 AndroidManifest.xml 파일을 열어 원하는 activity에 아래와 같이 빨간 부분을 추가 한다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<activity
            android:name=".testUrlScheme"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:host="호스트이름" android:scheme="스키마이름" />
            </intent-filter>
        </activity>

[testUrlScheme.java]
1
2
3
4
5
6
7
8
if(getIntent()!=null){
        Uri uri = getIntent().getData();
        if(uri != null)
        { 
            String param1 = uri.getQueryParameter("param1");
            String param2 = uri.getQueryParameter("param2");
        }
}


[앱에서 호출]
1
2
3
4
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setdata(Uri.parse("스키마://호스트?param1=test&param2=test2"));
startActivity(intent);


[웹에서 호출]
<a href="스키마://호스트?param1=test&param2=test2"> urlscheme </a>


[앱이 다시실행 될 때 호출]
1
2
3
4
5
6
7
8
@Override
    protected void onNewIntent(Intent intent) {
        // TODO Auto-generated method stub
        super.onNewIntent(intent);
        if(intent!=null){
            Uri uri = intent.getData();
        }
    }

2014년 3월 10일 월요일

[android] 전역변수 Applicationclass 사용하기

ApplicationClass는 어디서든 접근할 수 있고 공동으로 사용할 수 있습니다.
따라서 컴포넌트 사이에서 context를 이용하여 사용합니다.


[ApplicationClass.java]

1
2
3
4
5
6
7
8
9
public class ApplicationClass extends Application{
    private boolean m_test;
    public boolean getState(){
        return m_test;
    }
    public void setState(boolean test){
        m_test = test;
    }
}


[사용하고 싶은 곳]

private ApplicationClass applicationclass;
applicationclass = (ApplicationClass)context.getApplicationContext();
applicationclass.getState();