私はAndroid Studioでアプリケーションを作成しようとしています。私は2つのボタンを持っています。プラスとマイナス。これらのボタンの1つをクリックするたびに、テキストを小さくする方法を知る必要があります。テキストを大きくて小さくする
これは私のMainActivity.javaです:
Button Min = (Button)findViewById(R.id.Min);
Min.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
TextView t = (TextView)findViewById(R.id.DeText);
t.setTextSize(-5);
}
});
これは私の.xmlです:
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/Plus"
android:layout_gravity="top|left"
android:text="+"
android:textSize="50dp"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/Min"
android:layout_gravity="top|right"
android:text="-"
android:textSize="50dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="50dp"
android:id="@+id/DeText"
android:text="Text"/>
私も私が働いているページのスクリーンショットをしました。うまくいけば、これが私の最後の製品に関するいくつかのより多くの情報を提供します:
このコードを 'onCreate'メソッドの中に含める必要があります。 –
これは、ありがとう:) –