Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
627 views
in Technique[技术] by (71.8m points)

kotlin - What is the android version of css transform in html

In css for html there are a number of different things that you can do with the transform attribute. this link has more detail on what i'm speaking about.

I want to learn how to do this in android (weather it can easily be done in xml or programmatically on kotlin).

This is what i know so far:

  • RotateX() translates to android:rotationX=""
  • RotateY() translates to android:rotationY=""
  • RotateZ() translates to android:rotation=""

Here is what i don't know but really want to find out:

This link gives a good simple answer to both the questions with canvas?.skew(1.0f, 0.3f) inside the ondraw listener however, it only skews the text and not the shape of the view unlike the html version shown in the links.

How do i do the unknown ones (SkewX and SkewY) mentioned above?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...