Android入門筆記之更改手機螢幕方向

2021-06-18 06:43:44 字數 1106 閱讀 1566

android入門筆記之更改手機螢幕方向

<1>簡介

通過乙個按鈕組來改變橫屏豎屏顯示。

<2>關鍵步驟

<3>出現的問題

注意資源檔案不能用大寫字母命名,否則r檔案無法識別。

<4>**及解釋

activity_changescreen.xml:

<?xml version="1.0" encoding="utf-8"?>

changescreenactivity:

package com.func;

import android.content.pm.activityinfo;

import android.os.bundle;

import android.widget.radiobutton;

import android.widget.radiogroup;

import android.widget.toast;

import com.test.r;

public class changescreenactivity extends activity

radiogroup.oncheckedchangelistener mchange=new radiogroup.oncheckedchangelistener() else

if(getrequestedorientation()==activityinfo.screen_orientation_landscape)//若為橫屏

}else if(checkedid==rbv.getid())//豎屏按鈕

else

if(getrequestedorientation()==activityinfo.screen_orientation_portrait)//若為豎屏}}

};rg.setoncheckedchangelistener(mchange);//radiogroup新增***

}}

Android入門筆記10

讀取系統簡訊,首先查詢原始碼獲得簡訊資料庫內容提供者的主機名和路徑,然後 contentresolver cr getcontentresolver cursor c cr.query uri.parse content sms new string,null,null,null while c.m...

Android入門筆記11

一張張不斷的切換,形成動畫效果 位移 縮放 透明 旋 所有動畫一起飛 建立動畫集合 animationset set new animationset false 往集合中新增動畫 set.addanimation aa set.addanimation sa set.addanimation ra...

Android入門筆記 06 布局

android的五大布局分別是linearlayout 線性布局 framelayout 單幀布局 relativelayout 相對布局 absolutelayout 絕對布局 和tablelayout 布局 1 linearlayout 分為水平和垂直.通過 android orientatio...