function string_parsing(event){
	var code = $XT ("STRING.string_1").value;
	var bar = code.split("_");
	for (var i=0; i<bar.length; i++){
		$XT("STRING.string_2").value = bar[0];
		$XT("STRING.string_3").value = bar[1];
		$XT("STRING.string_4").value = bar[2];
	}
}

 

블로그 이미지

Or71nH

,

X-SCADA 이런식으로 딜레이를 걸어 놓을수 있음

var a_cnt = 0 ; 

setInterval(a, 1000);

function a()
{
	a_cnt++;
	console.log("a"+a_cnt);
}

페이지 제어

 

 

 

 

 

 

누르면 페이지 전환

로그인을 만들어 보자

이거 요로케 바꿈

 

요로케

요로케 만들면됨

 

블로그 이미지

Or71nH

,

저기 RSS 가 있다 

저거 들어가면

이렇게 밑에 뜬다

 

주소는 특수 문자 뒤에꺼 제거하고 쓰기 시작한다

 

 

 

zone은 dongCode =????????

라고 링크 되어있는 곳이다

 

http://www.kma.go.kr/wid/queryDFSRSS.jsp



zone=1159068000#rss.channel.item.title


zone=1159068000#rss.channel.item.description.header.tm


zone=1159068000#rss.channel.item.description.body.data[@seq='0'].wfEn

이렇게 쳐서 장치 추가하고 태그 만들어주었다

블로그 이미지

Or71nH

,

자바스크립트(5)_함수리스트_v1.0.pdf
0.34MB

 

 

블로그 이미지

Or71nH

,

레이아웃 종류

 

위부터 LinearLayout

 

밑은 RelativeRayout 

 

옆은 FrameLayout

 

 

 

layout_marginLeft 남은 여백을 말한다

 

gravity  끌어옴

 

 

super == > 부모의 메서드를 불러오고 싶을때

 

증조 할머니 뻘은 이름 써서 가져와야한다

 

 

 

이게 이리된다

음...

레이아웃과

위치를 계산할줄 아야야 한다

그리고 함수의 이름을 잘 알아야 

만들었고

이렇게 하면된다

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android = "http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background= "#FFFF00"
    android:orientation="vertical"
    android:weightSum="10"
    >
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        android:textSize="28dp"
        android:textColor="#000000"
        android:layout_weight="4"
        android:gravity="center"
        />
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#FF9999"
        android:layout_weight="4"
        android:gravity="center"
        >
        <FrameLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            >
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Good Bye~"
                android:textSize="28dp"
                android:textColor="#000000"
                android:background="#00FF00"
                android:layout_gravity="center"
                android:layout_margin="10dp"
                />
            <FrameLayout
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:layout_gravity="right|top"
                >

                <ImageView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:src="@drawable/talk_bg"
                    android:layout_gravity="center"
                    />

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:text="3"
                    android:textSize="12dp"
                    android:textColor="#FFFF00"
                    android:gravity="center"
                    />
            </FrameLayout>
        </FrameLayout>
    </LinearLayout>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Hi!"
        android:textSize="28dp"
        android:textColor="#000000"
        android:background="#3333FF"
        android:layout_weight="2"
        android:gravity="center"
        />
</LinearLayout>


블로그 이미지

Or71nH

,