BadgeView是第三方的插件,用來顯示組件上面的標記,起到提醒的作用,下載地址如下:http://files.cnblogs.com/files/hyyweb/android-viewbadger.zip 如示意圖: 首先導入BadgeView的jar包到libs文件夾下,然後就可以使用它提供的 ...
BadgeView是第三方的插件,用來顯示組件上面的標記,起到提醒的作用,下載地址如下:http://files.cnblogs.com/files/hyyweb/android-viewbadger.zip 如示意圖:
首先導入BadgeView的jar包到libs文件夾下,然後就可以使用它提供的類庫了。核心代碼如下:
package com.example.badgeview; import com.readystatesoftware.viewbadger.BadgeView; import android.os.Bundle; import android.app.Activity; import android.graphics.Color; import android.view.Menu; import android.widget.Button; import android.widget.ImageView; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button btn=(Button) findViewById(R.id.button1); ImageView target= (ImageView )findViewById(R.id.imageView1); BadgeView bv = new BadgeView(this, btn); bv.setText("1"); bv.setTextColor(Color.YELLOW); bv.setTextSize(12); bv.setBadgePosition(BadgeView.POSITION_TOP_RIGHT); //預設值 //bv.hide(); bv.show(); } }