exp9
exp9
setContentView(R.layout.activity_main);
toggleBluetoothButton.setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View v) {
// Toggle Bluetooth ON/OFF
if (bluetoothImage.getTag() ==
null ||
bluetoothImage.getTag().equals("OFF")) {
// Change to ON state
bluetoothImage.setImageResource(R.drawa
ble.bluetooth_on); // Your ON image
bluetoothImage.setTag("ON");
} else {
// Change to OFF state
bluetoothImage.setImageResource(R.drawa
ble.bluetooth_off); // Your OFF image
bluetoothImage.setTag("OFF");
}
}
});
}
}
2. Write a program to create a simple calculator.
android:layout_marginBottom="20dp"/> <Button
android:id="@+id/button3"
<!-- GridLayout for calculator buttons --> android:layout_width="0dp"
<GridLayout
android:layout_width="match_parent" android:layout_height="wrap_content"
android:layout_height="wrap_content" android:layout_rowSpan="1"
android:background="#FFFFFF" android:layout_columnSpan="1"
android:columnCount="4" android:layout_columnWeight="1"
android:orientation="horizontal"> android:layout_margin="10dp"
android:text="3" android:id="@+id/button7"
android:textSize="24sp" /> android:layout_width="0dp"
<Button android:layout_height="wrap_content"
android:id="@+id/button4" android:layout_rowSpan="1"
android:layout_width="0dp" android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:layout_height="wrap_content" android:layout_margin="10dp"
android:layout_rowSpan="1" android:text="7"
android:layout_columnSpan="1" android:textSize="24sp" />
android:layout_columnWeight="1"
android:layout_margin="10dp" <Button
android:text="4" android:id="@+id/button8"
android:textSize="24sp" /> android:layout_width="0dp"
<Button android:layout_height="wrap_content"
android:id="@+id/button5" android:layout_rowSpan="1"
android:layout_width="0dp" android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:layout_height="wrap_content" android:layout_margin="10dp"
android:layout_rowSpan="1" android:text="8"
android:layout_columnSpan="1" android:textSize="24sp" />
android:layout_columnWeight="1"
android:layout_margin="10dp" <Button
android:text="5" android:id="@+id/button9"
android:textSize="24sp" /> android:layout_width="0dp"
<Button android:layout_height="wrap_content"
android:id="@+id/button6" android:layout_rowSpan="1"
android:layout_width="0dp" android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:layout_height="wrap_content" android:layout_margin="10dp"
android:layout_rowSpan="1" android:text="9"
android:layout_columnSpan="1" android:textSize="24sp" />
android:layout_columnWeight="1"
android:layout_margin="10dp" <Button
android:text="6" android:id="@+id/button0"
android:textSize="24sp" /> android:layout_width="0dp"
<Button android:layout_height="wrap_content"
android:layout_rowSpan="1" android:layout_margin="10dp"
android:layout_columnSpan="2" android:text="×"
android:layout_columnWeight="2" android:textSize="24sp" />
android:layout_margin="10dp"
android:text="0" <Button
android:textSize="24sp" /> android:id="@+id/buttonDivide"
android:layout_width="0dp"
<!-- Operation buttons -->
<Button android:layout_height="wrap_content"
android:id="@+id/buttonAdd" android:layout_rowSpan="1"
android:layout_width="0dp" android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:layout_height="wrap_content" android:layout_margin="10dp"
android:layout_rowSpan="1" android:text="÷"
android:layout_columnSpan="1" android:textSize="24sp" />
android:layout_columnWeight="1"
android:layout_margin="10dp" <Button
android:text="+" android:id="@+id/buttonClear"
android:textSize="24sp" /> android:layout_width="0dp"
<Button android:layout_height="wrap_content"
android:id="@+id/buttonSubtract" android:layout_rowSpan="1"
android:layout_width="0dp" android:layout_columnSpan="1"
android:layout_columnWeight="1"
android:layout_height="wrap_content" android:layout_margin="10dp"
android:layout_rowSpan="1" android:text="C"
android:layout_columnSpan="1" android:textSize="24sp" />
android:layout_columnWeight="1"
android:layout_margin="10dp" <Button
android:text="-" android:id="@+id/buttonEqual"
android:textSize="24sp" /> android:layout_width="0dp"
<Button android:layout_height="wrap_content"
android:id="@+id/buttonMultiply" android:layout_rowSpan="1"
android:layout_width="0dp" android:layout_columnSpan="2"
android:layout_columnWeight="2"
android:layout_height="wrap_content" android:layout_margin="10dp"
android:layout_rowSpan="1" android:text="="
android:layout_columnSpan="1" android:textSize="24sp" />
android:layout_columnWeight="1" </GridLayout>
<TextView
android:layout_width="match_parent" // Initialize the display TextView
android:layout_height="wrap_content" display = findViewById(R.id.display);
android:text="Programmed by Muskan
Kateja, Roll No. 17" // Number buttons (0-9)
android:textSize="18sp" Button button0 =
android:textColor="#000000" findViewById(R.id.button0);
android:gravity="center" Button button1 =
android:padding="10dp" findViewById(R.id.button1);
android:layout_marginTop="20dp" Button button2 =
android:background="#fff"/> findViewById(R.id.button2);
</LinearLayout> Button button3 =
findViewById(R.id.button3);
MainActivity.java Button button4 =
findViewById(R.id.button4);
package com.example.prac9_2; Button button5 =
findViewById(R.id.button5);
import android.os.Bundle; Button button6 =
import android.view.View; findViewById(R.id.button6);
import android.widget.Button; Button button7 =
import android.widget.TextView; findViewById(R.id.button7);
Button button8 =
import findViewById(R.id.button8);
androidx.appcompat.app.AppCompatActivit Button button9 =
y; findViewById(R.id.button9);
currentText = String.valueOf(result);
display.setText(currentText);
firstNumber = result;
}
}