Android開發之圖形映像與動畫(一)Paint和Canvas類學習_Android

來源:互聯網
上載者:User
Paint類
*Paint類代表畫筆,用來描述圖形的顏色和風格,如線寬,顏色,透明度和填充效果等資訊。
*使用Paint類時,需要先建立該類的對象,可以通過該類的建構函式實現。通常情況的實現代碼是:
*Paintpaint=newPaint();
*建立完Paint對象後,可以通過該對象提供的方法對畫筆的預設設定進行改變
Canvas
*Canvas類代表畫布,通過該類提供的構造方法,可以繪製各種圖形。
*通常情況下,要在Android中繪圖,需要先建立一個繼承自View類的視圖,並且在該類中重寫它的onDraw方法,
*然後在顯示繪圖的Activity中添加該視圖
 
實現此執行個體的xml檔案的定義如下:
複製代碼 代碼如下:

<FrameLayoutxmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Draw_View"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"/>
<com.example.draw_view.DrawView
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</FrameLayout>

實現的原始碼如下:
複製代碼 代碼如下:

publicclassDrawViewextendsView{
publicDrawView(Contextcontext,AttributeSetattrs){
super(context,attrs);
//TODOAuto-generatedconstructorstub
}
@Override
protectedvoidonDraw(Canvascanvas){
//TODOAuto-generatedmethodstub
super.onDraw(canvas);
Paintpaint=newPaint();
paint.setColor(Color.RED);
paint.setShadowLayer(2,3,3,Color.rgb(180,180,180));
canvas.drawRect(40,40,200,100,paint);
}

}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.