时间:2021-05-21
项目:Orientation
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 { 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()); }}扩展学习:
UI界面设计
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" />要想使得文字居中,需要添加属性android:gravity="center",可选择的选项还有top、bottom、left、right、center等,center相当于center_vertical|center_horizontal。
使用android:textSize="24sp"指定文字大小,android:textColor="#00ff00"指定文字颜色。
Button
<Button android:id="@+id/button" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Button" android:textAllCaps="false"/>在Android中,Button上面的文字默认英文全部大写,可以通过设置android:textAllCaps="false"改变
EditText
<EditText android:id="@+id/edittext" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="HelloWorld" android:maxLength="20" android:maxLines="1" />通过设置hint属性可以得到提示文字,设置maxLines使得输入框中最大输入行数。
以上相关知识点如果还有什么疏漏大家可以直接联系小编,感谢你的阅读和对的支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了Android编程实现屏幕自适应方向尺寸与分辨率的方法。分享给大家供大家参考,具体如下:Android屏幕自适应方向尺寸与分辨率,包括屏幕界面布局
简介:Android界面效果UI开发资料汇总1.Android_UI开发专题.rar2.android界面效果全汇总.rar对于Android平台的资源类and
Android屏幕截图并保存截取屏幕的图片到指定文件,具体内容如下注意要添加权限:完整代码:packagezhangphil.test;importandroi
Android屏幕及view的截图实例详解屏幕可见区域的截图整个屏幕截图的话可以用Viewview=getWindow().getDecorView();pub
大家使用Android的原生UI都知道,Android的Activity跳转就是很生硬的切换界面。其实Android的Activity跳转可以设置各种动画。下面