使用xml android在雅虎摘要新闻应用程序中绘制倾斜的矩形上边缘形状
Posted
技术标签:
【中文标题】使用xml android在雅虎摘要新闻应用程序中绘制倾斜的矩形上边缘形状【英文标题】:drawing sloped rectangle upper edge shape as in yahoo digest news app using xml android 【发布时间】:2015-05-22 17:11:00 【问题描述】:我正在尝试绘制倾斜的矩形上边缘形状并将其用作图片中的线性布局背景:
这是我试图实现的设计的链接:http://postimg.org/image/krjwfcisz/
我尝试绘制一个矩形并旋转它,但效果不佳。
那么如何创建该形状。
抱歉语法错误,我不流利:P。
【问题讨论】:
【参考方案1】:嗯,我认为回答我的问题是一件愚蠢的事情,但我这样做是因为它可能对其他人有所帮助。
我无法使用 XML 创建我需要的内容。
所以这里是如何使用 onDraw 方法创建一个倾斜的矩形。
首先你需要创建一个扩展View
类的类,然后
public class SharpRectView extends View
public SharpRectView(Context context)
super(context);
public SharpRectView(Context context, AttributeSet attrs)
super(context, attrs);
public SharpRectView(Context context, AttributeSet attrs, int defStyleAttr)
super(context, attrs, defStyleAttr);
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
@Override
protected void onDraw(Canvas canvas)
float width = getWidth();
float height = getHeight();
Path path = new Path();
Paint paint = new Paint();
paint.setColor(getResources().getColor(R.color.text_white));
paint.setAntiAlias(true);
paint.setStyle(Paint.Style.FILL_AND_STROKE);
path.moveTo(0,0);
path.lineTo(width, 0.26f * width);
path.lineTo(width, height);
path.lineTo(0, height);
path.lineTo(0, 0);
path.close();
canvas.drawPath(path,paint);
那么你可以在你的布局中使用这个视图类作为自定义视图,如下所示:
<com.example.SharpRectView
android:id="@+id/sharp_rect"
android:layout_
android:layout_
android:layout_marginTop="-120dp"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
/>
并感谢我使用他的项目找到解决方案的人,请访问:https://github.com/qianlvable/ParallaxEffectDemo 他的用户名是:qianlv
【讨论】:
以上是关于使用xml android在雅虎摘要新闻应用程序中绘制倾斜的矩形上边缘形状的主要内容,如果未能解决你的问题,请参考以下文章
我想开发一个总结用户输入文本的 Android 应用程序(可能是一篇新闻文章)