Android: 实现圆角ImageView

实现圆角imageview有两种办法:

1. xml中设置background:

drawable文件夹中新建一个文件bg_update_dialog:



    
    

然后再布局文件中引用:

android:background="@drawable/bg_update_dialog"

上面这种方法在有些情况下有用,但在某些情况下可能出现下面的状况:

上边角不是圆角

这种情况用第二种方法。

2. 在代码中设置。

大概的原理就是将图片转化为Bitmap格式的,然后bitmap格式转化为RundedBitmapDrawable:

在oncreate中设置:

        setContentView(R.layout.dialog_update);
        ImageView image = findViewById(R.id.image);
        RoundedBitmapDrawable circularBitmapDrawable = RoundedBitmapDrawableFactory.create(context.getResources(), BitmapFactory.decodeResource(context.getResources(), R.drawable.update_banner));
        circularBitmapDrawable.setCornerRadius(15);
        image.setImageDrawable(circularBitmapDrawable);

此时的效果为:

可以看到图片上面已经被设置为圆角。

上面截图是我做的自定义的升级弹框,在后面会写一篇博客介绍怎么实现,欢迎关注。

另外,有什么问题,欢迎留言~

使用 div 实现 input、textarea 输入框,并支持 placeholder 属性(解决浏览器兼容问题)

解决这个问题的初衷:在做文本编辑器时,系统自带的 textarea 在 火狐 浏览器中回车不会进行换行,被显示成了空格,找了好几种方案没解决,试了下 div 实现 input、textarea 的方式,发现可以完美解决这个问题

# 使用 contenteditable="true" 实现的文本框全选内容

# 输入框贴贴去除样式并插入到指定光标位置(contenteditable="true" 实现的输入框也支持)

一、div 实现 textarea

1、给 div 添加 contenteditable="true" 属性,使 div 元素变成用户可编辑。

2、给 div 添加resize: both; 样式,使 div 可以被用户调整尺寸,注意:同时需要设置overflow: auto;样式,因为 resize 样式不适用于 overflow: visible; 的块,不然 resize 不会生效,如果不需要支持手动拖拽输入框,不加就行。

resize 支持输入框拉伸的属性:vertical(垂直拉伸)、horizontal(水平拉伸)、both(垂直与水平拉伸)

3、增加一个 placeholder 属性,通过 CSS 控制显示。

html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Documenttitle>
  <style>
    /* 输入框 */
    .dzm-textarea {
      padding: 5px;
      border: 1px solid red;
    }
    /* 输入框为空时显示 placeholder */
    .dzm-textarea:empty:before {
      content: attr(placeholder);
      color: red;
    }
    /* 输入框获取焦点时移除 placeholder */
    .dzm-textarea:focus:before {
      content: none;
    }
  style>
head>
<body>
  
  <div class="dzm-textarea" contenteditable="true" placeholder="请输入内容" style="resize: both; overflow: auto;">div>
body>
html>

二、div 实现 input

1、给 div 添加 contenteditable="true" 属性,使 div 元素变成用户可编辑。

2、给 div 添加一个 onkeydown 事件,然后禁止 回车换行。

3、增加一个 placeholder 属性,通过 CSS 控制显示。

html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Documenttitle>
  <style>
    /* 输入框 */
    .dzm-input {
      padding: 5px;
      border: 1px solid red;
    }
    /* 输入框为空时显示 placeholder */
    .dzm-input:empty:before {
      content: attr(placeholder);
      color: red;
    }
    /* 输入框获取焦点时移除 placeholder */
    .dzm-input:focus:before {
      content: none;
    }
  style>
head>
<body>
  
  <div class="dzm-input" contenteditable="true" placeholder="请输入内容" onkeydown="myFunction()">div>
  <script>
    // 禁止回车换行
    function myFunction(){
      if (window.event && window.event.keyCode == 13) {
        window.event.returnValue = false;
      }
    }
  script>
body>
html>

本站内容来自用户投稿,如果侵犯了您的权利,请与我们联系删除。联系邮箱:835971066@qq.com

本文链接:http://news.xiuzhanwang.com/post/1226.html

发表评论

评论列表

还没有评论,快来说点什么吧~

友情链接: