得到安卓系统的一些信息
String phoneInfo = "Product: " + android.os.Build.PRODUCT;
phoneInfo += ", CPU_ABI: " + android.os.Build.CPU_ABI;
phoneInfo += ", TAGS: " + android.os.Build.TAGS;
phoneInfo += ", VERSION_CODES.BASE: " + android.os.Build.VERSION_CODES.BASE;
phoneInfo += ", MODEL: " + android.os.Build.MODEL;
phoneInfo += ", SDK: " + android.os.Build.VERSION.SDK;
phoneInfo += ", VERSION.RELEASE: " + android.os.Build.VERSION.RELEASE;
phoneInfo += ", DEVICE: " + android.os.Build.DEVICE;
phoneInfo += ", DISPLAY: " + android.os.Build.DISPLAY;
phoneInfo += ", BRAND: " + android.os.Build.BRAND;
phoneInfo += ", BOARD: " + android.os.Build.BOARD;
phoneInfo += ", FINGERPRINT: " + android.os.Build.FINGERPRINT;
phoneInfo += ", ID: " + android.os.Build.ID;
phoneInfo += ", MANUFACTURER: " + android.os.Build.MANUFACTURER;
phoneInfo += ", USER: " + android.os.Build.USER;
得到应用软件的版本号
private String getVersionName() throws Exception
{
// 获取packagemanager的实例
PackageManager packageManager = getPackageManager();
// getPackageName()是你当前类的包名,0代表是获取版本信息
PackageInfo packInfo = packageManager.getPackageInfo(getPackageName(),0);
String version = packInfo.versionName;
return version;
}
Appcompat实现Action Bar时,如果使用到split action bar或者Navigating Up with the App Icon需要考虑兼容性。下面介绍下split action bar和Navigating Up with the App Icon,并解决兼容性。
启用split action bar模式时,在屏幕的底部会显示一个独立的横条,用于显示Activity在窄屏设备(如竖屏手机)上运行时的所有操作项,效果如下图。
要使用这种风格也非常简单,Android4.0(API 级别 14)或以上的版本上 , 在manifest文件中的activitiy节点或application节点中添加 uiOptions=“splitActionBarWhenNarrow”属性。API 级别小于 14 , 除了要添加以上属性以外,还需要在activity节点中添加如下节点:
<meta-dataandroid:name="android.support.UI_OPTIONS"android:value="splitActionBarWhenNarrow">
示例代码如下:
如果想实现上图最右侧的效果,即不显示标题栏和图标,可以在代码中使用如下方法:
setDisplayShowHomeEnabled(false); setDisplayShowTitleEnabled(false);
Navigating Up with the App Icon
Navigating Up with the App Icon作为传统的回退导航(一般指回退键,把用户带回任务历史中的前一个窗口)的补充,你能够让action bar图标提供向上级页面导航的功能,它应用把用户带回到你的应用程序的上级页面。例如,当前页面时你的应用程序层次比较深的一个页面,触摸应用程序图标应该返回返回上一级页面(当前页面的父页面)。
1)应用场景
在界面A中有一个List,点击其中的一个item以后,进入到界面B,这时界面B就可以添加上图所示的Up导航功能。
2)、与按下回退键的区别
回退键是严格按照用户点击的时间顺序,来进行后退显示之前的屏幕,而Navigating Up导航功能却和时间无关,只和程序的层级关系有关,也就是由你自己来决定Up点击后到达那个界面
3)实现方法:
为了使appicon可点击,并显示出up的标志,需要调用setDisplayHomeAsUpEnabled方法。
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_details); ActionBar actionBar = getSupportActionBar(); actionBar.setDisplayHomeAsUpEnabled(true); ... }
调用该方法以后就会显示出下图的返回的标志,但是点击的时候是不会有任何效果,要起到回退导航效果,可以使用下面的两种方式之一。
3.1)通过manifest文件实现
当parent Actitvity(返回到的Activity)都一样的时候,推荐使用该方法
Android4.1(API 级别 16)或以上的版本上时,可以直接在activity节点添加parentActivityName属性。
Android4.1(API 级别 16)以下版本,还需要添加<meta-data>节点。示例代码:
<application ... > ... <!-- The main/home activity (has no parent activity) --> <activity android:name="com.example.myfirstapp.MainActivity" ...> ... </activity> <!-- A child of the main activity --> <activity android:name="com.example.myfirstapp.DisplayMessageActivity" android:label="@string/title_activity_display_message" android:parentActivityName="com.example.myfirstapp.MainActivity" > <!-- Parent activity meta-data to support API level 7+ --> <meta-data android:name="android.support.PARENT_ACTIVITY" android:value="com.example.myfirstapp.MainActivity" /> </activity> </application>
这样设置以后,当你点击“<”符的时候就会返回到指定的activity。
3.2)通过代码实现
该方法适用于多个界面可以到达同一个界面,也就是说parent activity不一样的情况。主要是重写getSupportParentActivityIntent() 和onCreateSupportNavigateUpTaskStack()方法.
更多内容可以参考下面两个链接。
http://developer.android.com/guide/topics/ui/actionbar.html
http://developer.android.com/training/implementing-navigation/ancestral.html
解决兼容性的问题已标红,请注意。
1楼suannai031411分钟前您的文章已被推荐到博客首页和个人页侧边栏推荐文章,感谢您的分享。
在之前我们已经通过一个plist文件创建了一个UITabBar and UINavigationController的基本页面的跳转
应用一个类轻松实现UITabBar and UINavigationController的界面跳转
http://blog.csdn.net/zhangyankan/article/details/12789587
现在就实现第一个切换页面的功能
切换页面的功能主要包括:1.能实现无限翻页功能
2.能实现每页的背景颜色随机变化
3.能通过UINavigationController的leftBarButtonItem返回前一页,首页或者指定页,
并且返回页面的背景颜色和之前一致
现在就来说明一下具体的实现方法
在之前创建好的5个ViewController中的切换JFirstViewController.h中
#import <UIKit/UIKit.h>
#import "JBaseViewController.h"
@interface JFirstViewController : JBaseViewController<UIActionSheetDelegate>
@end
之所以继承JBaseViewController是因为后面会通过这个ViewController实现每个页面背景颜色的一起改变
然后后面那个代理是为了能实现页面的跳转
接下来在切换JFirstViewController.m中
#import "JFirstViewController.h"
@implementation JFirstViewController
-(void)next
{
JFirstViewController *fvc = [[JFirstViewControlleralloc]init];
[self.navigationControllerpushViewController:fvc animated:YES];
[fvcrelease];
}
-(void)back
{
//按下back会从屏幕底下弹出一个跳转窗口
UIActionSheet *action = [[UIActionSheetalloc] initWithTitle:@"跳转到"delegate:selfcancelButtonTitle:@"取消"destructiveButtonTitle:@"上一层"otherButtonTitles:@"首层",@"第三层",nil];
[action showFromTabBar:self.tabBarController.tabBar];
[actionrelease];
}
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
switch (buttonIndex)
{
//利用三种跳转方法回到不同的页面
case0://直接跳回上一页的方法
[self.navigationControllerpopViewControllerAnimated:YES];
break;
case 1://跳回首页的方法
[self.navigationControllerpopToRootViewControllerAnimated:YES];
break;
case 2://跳回指定页的方法
[self.navigationControllerpopToViewController:[self.navigationController.viewControllersobjectAtIndex:2]animated:YES];
break;
default:
break;
}
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [superinitWithNibName:nibNameOrNil bundle:nibBundleOrNil];
return self;
}
-(void)viewWillAppear:(BOOL)animated
{
int count =self.navigationController.viewControllers.count;
if (self) {
if (count>1)
{
//navigationItem的leftBarButtonItem实现back方法
UIBarButtonItem *back = [[UIBarButtonItemalloc]initWithTitle:@"back"style:UIBarButtonItemStyleBorderedtarget:selfaction:@selector(back)];
self.navigationItem.leftBarButtonItem = back;
[backrelease];
}
//navigationItem的rightBarButtonItem实现翻页方法
UIBarButtonItem *right = [[UIBarButtonItemalloc] initWithTitle:@"下一层" style:UIBarButtonItemStyleBordered target:self action:@selector(next)];
self.navigationItem.rightBarButtonItem = right;
[rightrelease];
}
//让navigationItem的title显示每一页的层
self.navigationItem.title = [[NSStringalloc]initWithFormat:@"第 %d 层",self.navigationController.viewControllers.count];
}
- (void)viewDidLoad
{
[superviewDidLoad];
//设置每页的随机背景颜色
CGFloat r = arc4random() %255 / 255.0f;
CGFloat g = arc4random() %255 / 255.0f;
CGFloat b= arc4random() %255 / 255.0f;
self.view.backgroundColor = [UIColorcolorWithRed:rgreen:g blue:b alpha:1];
}
@end
这样就可以实现页面无限跳转的方法了