How to write Text on ImageView in android coding?

后端 未结 4 1483
攒了一身酷
攒了一身酷 2020-12-06 06:08

Hi I\'ve been trying to write Numbers on Imageview. Images for N number of questions. If the user entered answer is correct, then it should be displayed with question number

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-06 06:40

    I believe the easiest workaround without overriding anything would be to have a TextView and set its background with a drawable resource.

    For instance:

    TextView t = (TextView)findViewById(R.id.my_text_view);
    // setting gravity to "center"
    t.setGravity(Gravity.CENTER);
    t.setBackgroundResource(R.drawable.my_drawable);
    t.setText("FOO");
    

提交回复
热议问题