Material Design的其他使用

Material Design给予图像两个新功能tint着色和clip剪裁
第一个着色很简单,你只需要在xml文件中配置好android:tint属性和android:tintMode属性就可以。

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical"
    tools:context="com.shuaijie.jiang.mytest.MainActivity">

            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/ic_launcher" />

            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:src="@mipmap/ic_launcher"
        android:tint="@color/colorAccent" />

            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:src="@mipmap/ic_launcher"
        android:tint="@color/colorAccent"
        android:tintMode="add" />

            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:src="@mipmap/ic_launcher"
        android:tint="@color/colorAccent"
        android:tintMode="multiply" />


效果显而易见,如图所示

Material Design的其他使用_第1张图片

接下来说一下裁剪的功能,你可以通过裁剪改变一个视图的外形。首先需要使用ViewOutlineProvider来
修改outline,然后通过view.setOutlineProvider将outline作用给视图。代码如下

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical"
    tools:context="com.shuaijie.jiang.mytest.MainActivity">

            android:id="@+id/tv1"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:elevation="5dp" />

            android:id="@+id/tv2"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginTop="10dp"
        android:elevation="5dp" />


public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        View tv1 = findViewById(R.id.tv1);
        View tv2 = findViewById(R.id.tv2);
        ViewOutlineProvider vop1 = new ViewOutlineProvider() {
            @Override
            public void getOutline(View view, Outline outline) {
                outline.setRoundRect(0, 0, view.getWidth(), view.getHeight(), 30);
            }
        };
        tv1.setOutlineProvider(vop1);
        ViewOutlineProvider vop2 = new ViewOutlineProvider() {
            @Override
            public void getOutline(View view, Outline outline) {
                outline.setOval(0, 0, view.getWidth(), view.getHeight());
            }
        };
        tv2.setOutlineProvider(vop2);
    }
}
Material Design的其他使用_第2张图片

你可能感兴趣的:(android)