您好,登錄后才能下訂單哦!
怎么在Android中實(shí)現(xiàn)一個(gè)跟隨手指的小球效果?很多新手對此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
配置DrawView類用于繪制小球
public class DrawView extends View { public float currentX = 40; public float currentY = 50; //定義并創(chuàng)建畫筆 Paint p = new Paint(); public DrawView(Context context) { super(context); } public DrawView(Context context , AttributeSet set) { super(context,set); } @Override public void onDrawForeground(Canvas canvas) { super.onDrawForeground(canvas); //設(shè)置畫筆顏色 p.setColor(Color.RED); //繪制一個(gè)小球 canvas.drawCircle(currentX , currentY , 30 , p); } //為組建的觸碰實(shí)踐重寫處理方法 @Override public boolean onTouchEvent(MotionEvent event) { //修改currentX,currentY的兩個(gè)屬性 currentX = event.getX(); currentY = event.getY(); //通知當(dāng)前組建重繪自己 invalidate(); //放回true表明該處理方法已經(jīng)處理該事件 return true; } }
MainActivity
public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //獲取Linearlayout布局容器 LinearLayout root = (LinearLayout) findViewById(R.id.root); //創(chuàng)建DrawView組件 final DrawView draw = new DrawView(this); //設(shè)定自定義組件的最小寬度、高度 draw.setMinimumWidth(300); draw.setMinimumHeight(500); root.addView(draw); } }
xml文件
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/root" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <com.example.a30797.myapplication.DrawView android:layout_width="match_parent" android:layout_height="match_parent" /> </LinearLayout>
**注:**由上面布局,已經(jīng)添加了自定義組件,因此Activity代碼可簡化為:
public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。