Q8.Create an application with three buttons vertically aligned, on selecting a button color of the screen will change. Android Program : Activity_main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/layout" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" tools:context="com.kishanhaldar.program8.MainActivity"> <Button android:text="Red" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/red" ...