下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
【移动应用开发技术】AndroidStudio屏幕方向以及UI界面状态的示例分析
package
com.example.orientation;
import
android.os.Bundle;
import
android.util.Log;
import
android.view.View;
import
android.widget.Button;
import
android.widget.TextView;
import
androidx.appcompat.app.AppCompatActivity;
public
class
MainActivity
extends
AppCompatActivity
{
/*
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
1.禁止切换横屏:在
AndroidManifest.xml-->application->activity->中设置如下代码(android:screenOrientation="portrait")
<activity
android:name=".MainActivity"
android:screenOrientation="portrait"
>
2.
创建
Landscape
布局,横屏时,会自动加载
Landscape
的布局界面(清单文件中,注意去掉
android:screenOrientation="portrait"
)
3.
翻转屏幕时,保存窗口控件的状态值;
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
*/
Button
button;
TextView
textView;
String
TAG
=
"myTag";
@Override
protected
void
onCreate(Bundle
savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
button
=
findViewById(R.id.button
);
textView
=
findViewById(R.id.textView);
//如果State中的值不为空,如果有相应的这个组件的值,则读取出来赋值上去
if(savedInstanceState
!=null)
{
String
s
=
savedInstanceState.getString("key");
textView.setText(s);
}
button.setOnClickListener(new
View.OnClickListener()
{
@Override
public
void
onClick(View
view)
{
textView.setText(button.getText());
}
});
}
@Override
protected
void
onDestroy()
{
super.onDestroy();
Log.d(TAG,"onDestroy:");
}
@Override
//将
textView
中的值,先保存到
outState
中(键值对)
public
void
onSaveInstanceState(Bundle
outState)
{
super.onSaveInstanceState(outState);
outState.putString("key",textView.getText().toString());
}
}TextView<TextView
android:id="@+id/textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="This
is
a
TextView"
android:textColor="#00ff00"
android:textSize="24sp"
/>Button<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button"
android:textAllCaps="false"/>EditText<EditText
android:id="@+id/edittext"
android:layout_width="match_parent"
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 会计实务综合课程设计
- 过程流体机械课程设计
- 汽车设计课程设计感想
- 2024至2030年中国背带式自动包装机行业投资前景及策略咨询研究报告
- 2024至2030年中国活塞式压力真空计数据监测研究报告
- 2024至2030年中国铁扶手数据监测研究报告
- 课程设计光盘素材
- 2024至2030年中国微波杀菌机数据监测研究报告
- 2024年1.61超薄非球面树脂镜片项目可行性研究报告
- 软件综合课程设计评价
- GB/T 22844-2009配套床上用品
- GB/T 14683-2017硅酮和改性硅酮建筑密封胶
- 无人机校企合作协议
- 工程设备进场进场开箱验收单
- GB 16809-2008防火窗
- 《百团大战》历史课件
- 八年级上册道德及法治非选择题专项训练
- 2023年徐州市国盛控股集团有限公司招聘笔试题库及答案解析
- 机械课程设计~二级减速器设计教程
- 国家开放大学《传感器与测试技术》实验参考答案
- 工程造价司法鉴定实施方案
评论
0/150
提交评论