안녕하세요..

startActivity 로 Activity 를 구동했습니다.
그런데, Activity 가 화면 전체에 나오질 않습니다.
아래와 같이 fill_parent 로 했고요.. AndroidManifest.xml 에 android:theme="@android:style/Theme.Dialog" android:screenOrientation="landscape" 이렇게 설정했습니다.
이렇게 설정한 다른 Activity 들은 전체화면으로 나오는데.. 왜, 이 Activity 만 작게 나올까요?
뭔가 실수한것 같은데... 원인을 모르겠어요... 도와주세요~

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
</LinearLayout>