android---손전등의 모스 부호

4921 단어
                    ,      ,         ,         ,      ,           ,     .
    public static void sleep(int t) {
        try {
            Thread.sleep(t);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    private void sendot() {
        startflashlight();
        sleep(DOT_TIME);
        stopflashlight();
    }
    private void sendline() {
        startflashlight();
        sleep(LINE_TIME);
        stopflashlight();
    }

송신점, 가로, 그리고 휴면은 전문적으로 세분화되어 있으며, 이렇게 하면 제어 함수에서 호출하기만 하면 된다
    public void sendmorsecode(View view) {

        if (!getPackageManager().hasSystemFeature(
                PackageManager.FEATURE_CAMERA_FLASH)) {
            Toast.makeText(this, "         ", Toast.LENGTH_LONG).show();
            return;}
        String SOS = "...---...";
        char c;
        for (int i = 0; i < SOS.length(); i++) {
            if((c = SOS.charAt(i)) == '.'){
                sendot();
                sleep(DOT_LINE_TIME);
            }else {
                sendline();
                sleep(DOT_LINE_TIME);
            }
        }
        }

대응하는 xml 레이아웃 파일
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/linearlayout_morsecode" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginTop="120dp" android:layout_marginLeft="40dp" android:layout_marginRight="40dp" android:orientation="vertical" android:visibility="gone" >

    <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="    SOS    " android:textColor="#FFF" android:gravity="center" android:textSize="30sp" />   
        <Button  android:layout_width="60dp" android:layout_height="60dp" android:layout_marginTop="20dp" android:background="@drawable/morse_send" android:layout_gravity="center" android:onClick="sendmorsecode" />

</LinearLayout>

좋은 웹페이지 즐겨찾기