欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

android实现横屏的代码及思路

程序员文章站 2023-11-20 17:36:04
当屏幕变为横屏的时候,系统会重新呼叫当前activity的oncreate方法,你可以把以下方法放在你的oncreate中来检查当前的方向,然后可以让你的setconten...

当屏幕变为横屏的时候,系统会重新呼叫当前activity的oncreate方法,你可以把以下方法放在你的oncreate中来检查当前的方向,然后可以让你的setcontentview来载入不同的layout xml.

复制代码 代码如下:

if (this.getresources().getconfiguration().orientation == configuration.orientation_landscape) {

log.i("info", "landscape");

}

else if (this.getresources().getconfiguration().orientation == configuration.orientation_portrait) {

log.i("info", "portrait");

}


关于屏幕切换的时候

首先需要在androidmanifest.xml中加入配置

android:configchanges="orientation|keyboardhidden|navigation

这样在程序中. activity就不会重复的调用oncreate()

甚至不会调用onpause.onresume.

只会调用一个onconfigurationchanged(configuration newconfig)

这是在xml加入配置选项的前提下.

如果在就加入选项的前提下.如上所说. activity会重新激活oncreate方法

根据你自己的需求来选择配置改变时的处理机制这样比较好一点。

四、java怎样实现ping的功能来确定指定的ip地址是否能连通 可以用inetaddress的isreachable方法:

复制代码 代码如下:

import java.net.inetaddress;public class maintest { public static void main(string[] args) { 

try {  

int timeout = 3000;  

byte[] ip = new byte[] {

(byte) 192, (byte) 168, (byte) 100, (byte) 151 };

  int retry = 4;   inetaddress address = inetaddress.getbyaddress(ip); 

for (int i = 0; i < retry; i++) {

    if (address.isreachable(timeout)) { 

   system.out.println(i + " ok");    }

else { 

   system.out.println(i + " loss");   

}  

}

catch (exception e) {  

e.printstacktrace(); 

}

}

}