สำหรับคนที่กำลังพัฒนา Android Application ด้วย PhoneGap หรือที่เรียนกับเราแล้ว ไปเจอสเปคงานแบบนี้
อยากทำให้ Mobile App ของตัวเองนั้น เปิดมาก็อยู่ในแบบแนวนอน (ฝรั่งเรียกว่า landscape)
วิธีการทำก็ไม่ยาก ให้ทำตามวิธีการนี้ครับ
- เข้าไปที่ไฟล์ Manifest.xml
- ให้เพิ่มบรรทัดที่ผมมาร์ค highlight ไว้ดังนี้
<activity android:name=".Activity.SplashScreenActivity" android:label="@string/app_name" android:screenOrientation="landscape"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>
สำหรับ android:screenOrientation นั้น มี 2 แบบให้เลือก คือ portrait และ landscape ครับ
ขอให้มีความสุขกับ PhoneGap