xamarin android制作圆角边框

简介: xamarin android制作圆角边框效果图如下:关键代码:drawable文件夹新建shape_corner_down.xml 布局layout文件代码 xamarin android制作圆角边框原理:drawable文件夹下...

xamarin android制作圆角边框

效果图如下:

关键代码:

drawable文件夹新建shape_corner_down.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <solid android:color="#dedede" />
  <corners
    android:topLeftRadius="8dp"
                  android:topRightRadius="8dp"
              android:bottomRightRadius="8dp"
              android:bottomLeftRadius="8dp"/>
  <stroke 
     android:width="1dp"
     android:color="#000000"
    />

</shape>

布局layout文件代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FFFFFF">
    <RelativeLayout
        android:id="@+id/login_div"
        android:layout_width="fill_parent"
        android:layout_height="150dip"
        android:padding="15dip"
        android:layout_margin="15dip"
        android:background="@drawable/shape_corner_down" />
</LinearLayout>

xamarin android制作圆角边框原理:

drawable文件夹下新建的xml文件 shape:表示一个形状 ,solid:填充的颜色,corners:表示四个方向的弯曲度,如果四个角度都是一样的可以直接写成<corners android:radius="5dp" />  ,stroke表示边框

目录
相关文章
|
Android开发 Kotlin
Android Studio 制作聊天界面实践(Kotlin版)
Android Studio 制作聊天界面实践(Kotlin版)
684 0
Android Studio 制作聊天界面实践(Kotlin版)
|
3月前
|
XML 前端开发 Android开发
Android经典实战之Kotlin中实现圆角图片和圆形图片
本文介绍两种实现圆角图像视图的方法。第一种是通过自定义Kotlin `AppCompatImageView`,重写`onDraw`方法使用`Canvas`和`Path`进行圆角剪裁。第二种利用Android Material库中的`ShapeableImageView`,简单配置即可实现圆角效果。两种方法均易于实现且提供动态调整圆角半径的功能。
73 0
|
5月前
|
开发工具 Android开发
Android 代码自定义drawble文件实现View圆角背景
Android 代码自定义drawble文件实现View圆角背景
187 0
|
开发工具 Android开发 iOS开发
使用xamarin开发Android、iOS报错failed to open directory: 系统找不到指定的文件
使用vs2019学习xamarin时,创建新程序。使用模拟器真机等测试都报错如下图错误: ![请在此添加图片描述](https://developer-private-1258344699.cos.ap-guangzhou.myqcloud.com/column/article/5877188/20231030-de8ce5fd.png?x-cos-security-token=r4KyZDEowPT0kGTL0LqE8EnwfN1Nzexadb05dcffed3939ff8d7591c528c01706nvpGSE93QwHpZM8NwhJNTZctNRQa0l3KDhEnqj8P7d8t
122 0
使用xamarin开发Android、iOS报错failed to open directory: 系统找不到指定的文件
|
Android开发
Android shape左边框、上下边框、任意边框
Android shape左边框、上下边框、任意边框
486 0
Android shape左边框、上下边框、任意边框
|
XML Java Android开发
Android Preference 卡片圆角风格定制
Android Preference 卡片圆角风格定制
308 0
|
XML Android开发 数据格式
Android Navigation + Fragment 制作APP主页面导航(步骤 + 源码)
Android Navigation + Fragment 制作APP主页面导航(步骤 + 源码)
400 0
Android Navigation + Fragment 制作APP主页面导航(步骤 + 源码)
|
Android开发
Android自定义View,制作饼状图带动画效果
一个简单的自定义view饼状图,加入了动画效果
152 0
Android自定义View,制作饼状图带动画效果
|
Android开发
Android 设置图片的四个角 为圆角
Android 设置图片的四个角 为圆角
|
Web App开发 Dart 安全
flutter制作博客展示平台,现已支持 Web、macOS 应用、Android 和 iOS
Flutter Blog Theme using Flutter | Web, macOS, Android, iOS Flutter 最近发布了 Flutter V2.5.1,其性能得到了很大提升,支持 Web、macOS、Android 和 iOS。 这就是为什么今天我们使用在 Web、macOS 应用、Android 和 iOS 应用上运行的 flutter 创建响应式博客主题。 此外,我们创建了一个具有自定义悬停动画的动画网络菜单。 最后,您将学习如何使用 Flutter 制作响应式应用程序。
382 0
flutter制作博客展示平台,现已支持 Web、macOS 应用、Android 和 iOS