个人需要记住的

1.动态设置textView颜色
去res下的color.xml里添加,列入:

<resources>
    <color name="colorPrimary">#008577</color>
    <color name="colorPrimaryDark">#00574B</color>
    <color name="colorAccent">#D81B60</color>
    <color name="sb">#00ff00</color>
</resources>

在活动中通过:

  textView.setBackgroundResource(R.color.sb);

2.点击电话号跳转到拨打页面

ntent dialIntent =  new Intent(Intent.ACTION_CALL,Uri.parse("tel:" + phoneNumber));//直接拨打电话
 startActivity(dialIntent);
 Intent dialIntent =  new Intent(Intent.ACTION_CALL_BUTTON);//跳转到拨号界面
 startActivity(dialIntent);
 Intent dialIntent =  new Intent(Intent.ACTION_DIAL,Uri.parse("tel:" + phoneNumber));//跳转到拨号界面,同时传递电话号码

3.EditText

android:singgleline:"false"//实现单行输入
aandroid:maxlines:"1"//实现输入行数
Android:inputType:"textvisiblepassword"//显示输出内容
android:configChanges="orientation|screenSize"
android:screenOrientation="portrait"//则无论手机如何变动,拥有这个属性的activity都将是竖屏显示。
android:screenOrientation="landscape"//为横屏显示

4.隐藏ActionBar

 ActionBar actionBar=getSupportActionBar();
        if (actionBar!=null){
            actionBar.hide();
        }

4.list集合排序
在自己需要关联的类里实现:

public class People implements Comparable<People> {
*/需要的属性
*/
  @Override
    public int compareTo(People people) {
        int i=this.getId()-people.getId();
        return i;
    }
}

我们会发现sort(List<T>)方法中List中的T必须实现Comparable<T>接口,然后实现 compareTo()方法,该方法的返回值0代表相等,1表示大于,-1表示小于;
在acyivity中加入:

private List<People> list=new ArrayList<>();
 list.add(new People(5,"上海",23));
        list.add(new People(4,"武汉",20));
        list.add(new People(3,"武汉",50));
        Collections.sort(list);

第二种:

private List<People> list=new ArrayList<>();
       list.add(new People(5,"上海",23));
        list.add(new People(4,"武汉",20));
        list.add(new People(3,"武汉",50));
        Collections.sort(list, new Comparator<People>() {
            @Override
            public int compare(People people, People t1) {
                int i=people.getId()-t1.getId();
                return i;
            }
        });

5.SharedPreferences
存入数据:

 SharedPreferences users=getSharedPreferences("data",0);//第一个参数是文件名,第二个参数是只有当前的应用程序才可以对这个文件进行读写
        SharedPreferences.Editor editor=users.edit();//添加数据
        editor.putString("name","www");
        editor.putString("URL","www.baidu");
        editor.apply();//提交

读取数据:

 SharedPreferences users=getSharedPreferences("data",0);
        String name=users.getString("name","");
        String url=users.getString("URL","");
        Log.d("Main15Activity", "数据:"+name);
        Log.d("Main15Activity", "网址:"+url);

表格画线
首先在res下的drawable建立两个xml文件:
ic_shape_line.xml竖线

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <size android:width="2px"></size>
    <solid android:color="#101110"></solid>
</shape>

ic_shape_row.xml横线

<shape xmlns:android="http://schemas.android.com/apk/res/android">
     <size android:height="2px"></size>
    <solid android:color="#090A09"></solid>
</shape>
 <TableLayout
        android:divider="@drawable/ic_shape_row"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:showDividers="beginning|middle|end">
        <TableRow android:divider="@drawable/ic_shape_line"
            android:showDividers="beginning|middle|end">
            <TextView android:text="序号" android:layout_weight="1"  android:gravity="center"/>
            <TextView android:text="公交车编号" android:layout_weight="1" android:gravity="center"/>
            <TextView android:text="承载人数" android:layout_weight="1" android:gravity="center"/>
        </TableRow>
    </TableLayout>

圆形图片:

 <de.hdodenhof.circleimageview.CircleImageView
        android:id="@+id/circleImageView"
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:src="@drawable/tt"
        app:civ_border_color="@android:color/holo_red_dark"
        app:civ_border_width="5dp" />

给Textview加圆形边框:首先在res下的drawable里面建立一个xml布局文件如下内容
acc.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval"
    android:useLevel="false">
    <solid android:color="#EDECF0" />
    <stroke
        android:width="1dp"
        android:color="#673AB7" />
    <size android:width="40dp"
        android:height="40dp" />
</shape>

给TextView加矩形边框步骤同上,内容如下:
border.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#43F309" />

    <stroke
        android:width="0.01dp"
        android:color="#1B1212" />

    <padding
        android:bottom="1dp"
        android:left="0.5dp"
        android:right="0.5dp"
        android:top="0dp" />
    <size android:width="35dp"
        android:height="35dp" />

</shape>

9.根据url渲染Imageview:

imageView=findViewById(R.id.image1);
        new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    URL picurl=new URL("http://pic3.nipic.com/20090520/2489240_222607039_2.jpg");
                    final Bitmap pngBM= BitmapFactory.decodeStream(picurl.openStream());
                    runOnUiThread(new Runnable() {
                        @Override
                        public void run() {
                            imageView.setImageBitmap(pngBM);
                        }
                    });
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }).start();

工具类

private Bitmap utile(String uri){
        Bitmap bitmap=null;
        try {
            bitmap=BitmapFactory.decodeStream(new URL(uri).openStream());
        } catch (IOException e) {
            e.printStackTrace();
        }
        return  bitmap ;
    }

Textview跑马灯

android:singleLine="true" //单行显示
android:ellipsize="marquee" //跑马灯显示(动画横向移动)
android:marqueeRepeatLimit="marquee_forever"//永久滚动
android:focusable="true" //控件是否能够获取焦点
android:focusableInTouchMode="true" //是否在触摸模式下获得焦点

11.动态改变Button颜色

btn_signed.setBackgroundColor(Color.parseColor("#7CFC00"));

12.定时器

 new Timer().schedule(new TimerTask() {
            @Override
            public void run() {
                CommonUtil.runOnUIThread(new Runnable() {
                    @Override
                    public void run() {
                        textView.setText(i+"");
                    }
                });
                i++;
            }
        },5000,2000);

13.活动传值

 Intent intent=new Intent(TextActivity.this,PracticeActivity.class);
                intent.putExtra("data",num);
                startActivity(intent);
  Intent intent=getIntent();
                String name= intent.getStringExtra("data");
                textView.setText(name);
  handler.postDelayed(runnable,3000);
    }
    private Handler handler=new Handler(){
        @Override
        public String getMessageName(Message message) {
            return super.getMessageName(message);
        }
    };
     Runnable runnable=new Runnable() {
        @Override
        public void run() {
            Intent intent=new Intent(SplashActivity.this,MainActivity.class);
            startActivity(intent);
        }
    };

    @Override
    protected void onDestroy() {
        super.onDestroy();
        handler.removeCallbacks(runnable);
    }

13.记住密码

 private SharedPreferences sharedPreferences;
     private SharedPreferences.Editor editor;
     private EditText editTextname,editTextpassword;
     private CheckBox checkBoxpw,checkBoxauto;
     private Button buttonlogin;
    private String userNameValue,passwordValue;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_testlogin);
        sharedPreferences=this.getSharedPreferences("data",0);
        editTextname=findViewById(R.id.et_zh);
        editTextpassword=findViewById(R.id.et_mima);
        checkBoxpw=findViewById(R.id.cb_mima);
        checkBoxauto=findViewById(R.id.cb_auto);
        buttonlogin=findViewById(R.id.btn_login);
        if (sharedPreferences.getBoolean("ISCHECK",false)){
            checkBoxpw.setChecked(true);
            editTextname.setText(sharedPreferences.getString("USERNAME",""));
            editTextpassword.setText(sharedPreferences.getString("PASSWORD",""));
            if (sharedPreferences.getBoolean("AUTO_ISCHECK",false)){
                checkBoxauto.setChecked(true);
                startActivity(new Intent(TestloginActivity.this, SplashActivity.class));
            }
        }
        buttonlogin.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                userNameValue=editTextname.getText().toString();
                passwordValue=editTextpassword.getText().toString();
                if (userNameValue.equals("wang")&&passwordValue.equals("123")){
                    Toast.makeText(TestloginActivity.this,"登陆成功",Toast.LENGTH_SHORT).show();
                    if (checkBoxpw.isChecked()){
                        editor=sharedPreferences.edit();
                         editor.putString("USERNAME",userNameValue);
                         editor.putString("PASSWORD",passwordValue);
                         editor.commit();
                    }
                    startActivity(new Intent(TestloginActivity.this,SplashActivity.class));
                }else {
                    Toast.makeText(TestloginActivity.this,"用户名或密码错误,请重新登录", Toast.LENGTH_LONG).show();
                }
            }
        });
        checkBoxpw.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
                if (checkBoxpw.isChecked()){
                    Toast.makeText(TestloginActivity.this,"记住密码已选中", Toast.LENGTH_SHORT).show();
                    sharedPreferences.edit().putBoolean("ISCHECK",true).commit();
                }else {
                    Toast.makeText(TestloginActivity.this,"记住密码没有选中", Toast.LENGTH_SHORT).show();
                    sharedPreferences.edit().putBoolean("ISCHECK",false).commit();
                }
            }
        });
        checkBoxauto.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
                if (checkBoxauto.isChecked()){
                    Toast.makeText(TestloginActivity.this, "自动登录已选中", Toast.LENGTH_SHORT).show();
                   sharedPreferences.edit().putBoolean("AUTO_ISCHECK",true).commit();
//                   boolean t=sharedPreferences.getBoolean("AUTO_ISCHECK",false);
                }else {
                    Toast.makeText(TestloginActivity.this, "自动登录未选中", Toast.LENGTH_SHORT).show();
                     sharedPreferences.edit().putBoolean("AUTO_ISCHECK",false).commit();
                }
            }
        });
    }
  private SharedPreferences sharedPreferences;
     private SharedPreferences.Editor editor;
     private EditText editTextuser,editTextpassword;
     private CheckBox checkBoxpassword,checkBoxauto;
     private Button button;
     private String nameValue,passwordValue;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_testlogin);
        editTextuser=findViewById(R.id.user_name);
        editTextpassword=findViewById(R.id.user_password);
        checkBoxpassword=findViewById(R.id.check_password);
        checkBoxauto=findViewById(R.id.check_auto);
        button=findViewById(R.id.button_login);
        sharedPreferences=this.getSharedPreferences("data",0);
        if (sharedPreferences.getBoolean("ISCHECK",false)){
            checkBoxpassword.setChecked(true);
             editTextuser.setText(sharedPreferences.getString("USERNAME",""));
             editTextpassword.setText(sharedPreferences.getString("PASSWORD",""));
             if (sharedPreferences.getBoolean("AUTO_ISCHECK",false)){
                 checkBoxauto.setChecked(true);
                 startActivity(new Intent(TestloginActivity.this, WebviewActivity.class));
             }
        }
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                nameValue=editTextuser.getText().toString();
                passwordValue=editTextpassword.getText().toString();
                if (nameValue.equals("wang")&&passwordValue.equals("123")){
                    Toast.makeText(TestloginActivity.this,"登陆成功",Toast.LENGTH_SHORT).show();
                    if (checkBoxpassword.isChecked()){
                        editor=sharedPreferences.edit();
                        editor.putString("USERNAME",nameValue);
                        editor.putString("PASSWORD",passwordValue);
                        editor.commit();
                    }
                    startActivity(new Intent(TestloginActivity.this,WebviewActivity.class));
                }else {
                    Toast.makeText(TestloginActivity.this,"用户名或密码错误",Toast.LENGTH_SHORT).show();
                }
            }
        });
        checkBoxpassword.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
                if (checkBoxpassword.isChecked()){
                    Toast.makeText(TestloginActivity.this,"记住密码已经被勾选",Toast.LENGTH_SHORT).show();
                    sharedPreferences.edit().putBoolean("ISCHECK",true).commit();
                }else {
                    Toast.makeText(TestloginActivity.this,"记住密码已经被勾选",Toast.LENGTH_SHORT).show();
                    sharedPreferences.edit().putBoolean("ISCHECK",true).commit();
                }
            }
        });
        checkBoxauto.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
                if (checkBoxauto.isChecked()){
                    Toast.makeText(TestloginActivity.this,"自动登陆已经被勾选",Toast.LENGTH_SHORT).show();
                    sharedPreferences.edit().putBoolean("AUTO_ISCHECK",true).commit();
                }else {
                    Toast.makeText(TestloginActivity.this,"自动登陆已经被勾选",Toast.LENGTH_SHORT).show();
                    sharedPreferences.edit().putBoolean("AUTO_ISCHECK",false).commit();
                }
            }
        });
    }
}

一些小点

 <Switch
            android:id="@+id/switch1"
            android:textOn="关"
            android:textOff="开"
            android:checked="true"
            android:textSize="20dp"
            android:layout_width="70dp"
            android:layout_height="wrap_content" />
switch1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isChecked){
                    //Todo
                    textView.setText("开");
                }else {
                    //Todo
                    textView.setText("关");
                }
            }
        });
 public void image1(View view) {
        if (m == 0) {
            linearLayout1.setVisibility(View.VISIBLE);
            linearLayout3.setVisibility(View.VISIBLE);
            imageView1.setRotation(90);//旋转
            m = 1;
        } else {
            linearLayout1.setVisibility(View.GONE);
            linearLayout3.setVisibility(View.GONE);
            imageView1.setRotation(0);
            m = 0;
        }

15,webview

下面是HTML5引用css文件:

<link rel="stylesheet" href="../css/demo1.css">
Html5引用js文件

<script src="../js/firstjs.js"></script>
        WebSettings webSettings = webView.getSettings();
        // 设置与Js交互的权限
        webSettings.setJavaScriptEnabled(true);
        // 设置允许JS弹窗
       webSettings.setJavaScriptCanOpenWindowsAutomatically(true);
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容