안녕하세요.
질문이 있어 글남깁니다^^

현재 activity에서 다음과 같이 처리중인데요..
아래와같이 처리했더니 레이어를 뷰가 덮어버리네요;;;
레이어(EditText, ListView, Button등등 배치)를 뷰위에 올리고싶은데...
순서를 뭘 어찌 바꿔야할까여;;
답변좀 부탁드립니다...

        setContentView(R.layout.login);
               
        //---------------------------------------------------------------------------------
        // Is Android TitleWindow Support?
               
        ScreenWidth = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay().getWidth();
        ScreenHeight = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay().getHeight();

        AView = new AndroidView(this, ScreenWidth, ScreenHeight);
        RelativeLayout layout = (RelativeLayout)findViewById(R.id.login);
        layout.addView(AView);