Xamarin.Android设置控件样式

    大家好,今天给大家介绍下如何改变Xamarin.Android底下控件的样式,使得控件看起来比较美观。


    首先我们来看下效果:
Xamarin.Android设置控件样式_第1张图片
    上面两个Buttom控件没用到样式,看起来不是那么好看,下面的搜索按钮则用了样式,边角用圆弧过渡,设置了背景色,看起来比较美观。


    接下来讲一下具体实现的步骤:

1.Drawable里面添加xml文件

    代码如下(文件名Shape.xml):


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

  
  <solid android:color="#8DEEEE" />

  
  
  <corners android:radius="10dip" />

  
  <padding
    android:bottom="10dp"
    android:left="10dp"
    android:right="10dp"
    android:top="10dp" />
shape>

    这里也可以设置控件边框(文件名ShapeEdit.xml):

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

  
  
  
  <stroke android:width="1dip" android:color="#aea594" />

shape>

    还有其他的设置,大家可以自己去百度(虽然是Andriod Studio底下的,但基本一样,这个控件样式博主也是从Android Studio那边学过来的)

2.在axml文件里面设置控件样式

    在第一步里面我们已经在Drawable文件夹里面添加了Shape.xml和ShapeEdit.xml两个文件,现在在布局文件Search.axml里的控件里设置样式:

3.在Activity底下调用axml文件

    在Activity里面的OnCreate方法里设置布局:
Xamarin.Android设置控件样式_第2张图片
    我们来看下效果:
Xamarin.Android设置控件样式_第3张图片
    上面两个Button设置了边框以及边框颜色(用ShapeEdit.xml样式),下面的Button则用Shape.xml,设置了圆弧以及背景色。
    好了,本次结束就到这里,有问题的小伙伴可以联系我的QQ:1405999864,写的不好的地方欢迎在下面评论。

你可能感兴趣的:(Xamarin.Android)