通过匿名内部类方法
一、功能
1、点击按钮“增大字体”,增大文本框文字
2、点击按钮“减小字体”,缩小文本框文字
二、代码
activity_main.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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="60dp"
android:text="测试点击事件"
android:textSize="30dp"
android:gravity="center">
</TextView>
<Button
android:id="@+id/Button_Big"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="增大字体">
</Button>
<Button
android:id="@+id/Button_Small"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="减小字体">
</Button>
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="HelloWorld!"
android:textSize="20dp"
android:gravity="center">
</TextView>
</LinearLayout>
MainActivity.java
逻辑代码
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
/*****************以下*******************/
//找到按钮,并进行操作
findViewById(R.id.Button_Big).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
((TextView)findViewById(R.id.textView)).setTextSize(50);
}
});
findViewById(R.id.Button_Small).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
((TextView)findViewById(R.id.textView)).setTextSize(10);
}
});
/*******************以上*****************/
}
}