android 权威编程指南 笔记 2018-09-01

Posted 暴走灬青春

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 权威编程指南 笔记 2018-09-01相关的知识,希望对你有一定的参考价值。

1.android Button上面的英文字符串自动大写的问题解决

<Button
    android:id="@+id/true_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/button_true"
    android:textAllCaps="false"/>

 android:textAllCaps="false"属性即可,该属性是用来设置是否使用大写字母来呈现文本。

2.

<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

解决Android Studio 3.0时出现出现Failed to load Appcompat Actionbar with unknown error, APPCompat 活动栏不能显示安卓布局页面   可能是buildToolsVersion版本和compileSdkVersion版本不一致

 

3.动画

int cx = mTrue_button.getWidth() / 2;
int cy = mTrue_button.getHeight() / 2;
float radius = mTrue_button.getWidth();

Animator circularReveal = ViewAnimationUtils.createCircularReveal(mTrue_button, cx, cy, radius, 0);
circularReveal.addListener(new AnimatorListenerAdapter() 
    @Override
    public void onAnimationEnd(Animator animation) 
        super.onAnimationEnd(animation);
        mTrue_button.setVisibility(View.INVISIBLE);
    
);
circularReveal.start();

4.MVC

model   模型  模型对象存储数据和业务逻辑 

view    视图   视图层 xml 屏幕上看得见的对象

controller  控制器   逻辑单元 模型 视图的纽带 数据流动 activity

5. 数组循环 index % 数组.length

6.onSaveInstanceState(Bundle) 保存数据 bundle中  在onCreate中重新获取

7.activity 跳转 在第二个 activity 中编写intent  

以上是关于android 权威编程指南 笔记 2018-09-01的主要内容,如果未能解决你的问题,请参考以下文章

读书笔记--Android编程权威指南

看 《android权威编程指南》 的笔记

安卓权威编程指南-笔记(第25章 搜索)

安卓权威编程指南-笔记 (第29章定制视图与触摸事件)

Android编程权威指南的目录

andorid权威编程指南 笔记