Android Studio||横屏/布局/intent

  • Post author:
  • Post category:其他


step by step.


目录


1. 横屏/竖屏设置


横屏:


竖屏:


2. 背景颜色更换


3. 背景图片设置


1. 横屏/竖屏设置

横屏:

manifest的xml文件中对应activity添加语句:

android:screenOrientation="landscape"
android:screenOrientation="landscape"


竖屏:

 android:screenOrientation="portrait"

2. 背景颜色更换

theme文件夹里的更换即可

3. 背景图片设置

android:background="@drawable/background2"



版权声明:本文为weixin_51159944原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。