布局改变,方向改变

时间:2013-09-12 06:47:26

标签: android android-layout android-intent android-emulator

嗨,有可能在我的Android应用程序按钮中,垂直方向上的按钮会更改为水平方向的选项卡。那么它们可以更适合平板电脑吗?

4 个答案:

答案 0 :(得分:3)

一种方法是创建2个名为layout-land和layout-port的文件夹,写两个不同的xml同名,并将它们放在layout-land和layout-port中

例如,如果你有一个home.xml

If you put home.xml in layout-port folder, when your device is in portrait orientation it will use the file: layout-port/home.xml.

If you put home.xml in layout-land folder, when your device in landscape orientation it will use the file: layout-land/home.xml.

答案 1 :(得分:1)

您必须为纵向和横向模式创建单独的XML文件,并将其放在不同的目录中。设备将自动选择正确的设备。您可以使用以下目录结构

res/layout/my_layout.xml   
res/layout-land/my_layout.xml

有关详细信息,请阅读此doc

答案 2 :(得分:0)

是的,这绝对是可能的。

您检查过one吗?基本上它使用Android项目中的资源。您可以创建以下文件夹:

res/layout/           //portrait
res/layout-land/      //landscape

根据您的需要,使用相同名称但内容不同的布局。

答案 3 :(得分:0)

用于7英寸平板电脑: - 在res / layout-sw600dp-port中为纵向模式创建一个新文件夹 和res / layout-sw600dp-land for landscape mode

对于10英寸平板电脑: - 在res / layout-sw720dp-port中为纵向模式创建一个新文件夹 和res / layout-sw720dp-land for landscape mode

对于最大5英寸屏幕的手机布局,只需在布局文件夹中设计屏幕

希望这会对你有所帮助 !!快乐编码!!