当用户点击按钮时,如何增加TextView的大小?
答案 0 :(得分:2)
在点击方法
中使用以下代码yourtextview.setTextSize(TypedValue.COMPLEX_UNIT_SP,14);
试一试,看看它是否有效。
答案 1 :(得分:0)
我可能会通过使用TextView size属性来执行此操作。
在按钮的onClick中,您可以调用setTextSize(int,float)属性来增大或减小大小。
您可能还需要一个变量来根据值和增量来增加大小。然后在变量变为5之后,您可以将大小缩小回原始大小
希望这会有所帮助。
答案 2 :(得分:-1)
public class Zoom extends Activity
{
private String productName;
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.zoom);
Intent intent = getIntent();
productName = intent.getStringExtra("ChoosenMed");
TextView productNameTextView=(TextView)findViewById(R.id.prodcutNameZoomTextView);
productNameTextView.setText(productName);
}
}