Android学习

Posted qq_36250569

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android学习相关的知识,希望对你有一定的参考价值。

SHAPE:圆角和颜色渐变过度

<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <!-- 圆角的半径 -->
    <corners android:radius="20dp"/>

    <!-- 填充颜色 -->
    <gradient
        android:angle="90"
        android:startColor="#5E57D6"
        android:centerColor="#593DBE"
        android:endColor="#5E57D6">

    </gradient>

</shape>

gradient(渐变属性)在shape下进行颜色渐变

startColor:开始颜色

centerColor:中间颜色

endColor:结束颜色

angle:角度

BUTTON焦点触发变化

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- 正常状态 -->
    <item android:drawable="@drawable/btn_normal" android:state_pressed="false"/>

    <!-- 按下状态 -->
    <item android:drawable="@drawable/btn_pressed" android:state_pressed="true"/>

</selector>

利用按下数据监测;state_pressed判断真伪

页面跳转

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Button btn = (Button) findViewById(R.id.button2);
        btn .setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Intent i = new Intent(MainActivity.this , login.class);
                startActivity(i);
            }
        });
    }
}

通过建立一个新的活动窗口,然后在原窗口的Java程序中添加跳转事件程序

Text View

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

wrap_content        控件大小正好包含里面的内容

fill_parent与match_parent        控件大小与父布局大小一致

字符和int数据类型

字符串转int


a、int i = Integer.parseInt(str);或者int i = Integer.parseInt(str,int i);

b、int i = Integer.valueOf(str).intValue();


int转字符串


String a = Integer.toString(i);

String b = String.valueOf(i);

String c = "" + i;

按键事件弹窗
 

   Intent i = new Intent(MainActivity.this , login.class);
                    startActivity(i);

BUTTON

一、button 监听事件

        Button btn_wechat = (Button) findViewById(R.id.button2);
        btn_wechat .setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                }

二、button onclick事件

XML中添加onclick及名称

alt+Enter creat onclick事件函数

视频播放

android播放视频和视频做背景_红叶岭谷的博客-CSDN博客

边框

怎么给Android(安卓)控件添加边框(样式)?_宇某的博客-CSDN博客_android边框

翻转屏幕特性

每次翻转屏幕后程序会初始化

以上是关于Android学习的主要内容,如果未能解决你的问题,请参考以下文章

Android代码片段

Android课程---Android Studio使用小技巧:提取方法代码片段

Android 实用代码片段

Android 实用代码片段

Kotlin学习之旅解决错误:kotlin.NotImplementedError: An operation is not implemented: Not yet implemented(代码片段

片段不去活动 [Android]