diff --git a/tests/anomaly-tester/res/layout/activity_main.xml b/tests/anomaly-tester/res/layout/activity_main.xml
index 6977d78370a..63d025efbe3 100644
--- a/tests/anomaly-tester/res/layout/activity_main.xml
+++ b/tests/anomaly-tester/res/layout/activity_main.xml
@@ -20,8 +20,38 @@
android:layout_width="match_parent"
android:orientation="vertical">
-
+ android:layout_height="0dp"
+ android:layout_weight="4"
+ android:padding="4dp"
+ android:textSize="16sp">
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/tests/anomaly-tester/res/layout/bluetooth_anomaly.xml b/tests/anomaly-tester/res/layout/bluetooth_anomaly.xml
new file mode 100644
index 00000000000..7de558e29b1
--- /dev/null
+++ b/tests/anomaly-tester/res/layout/bluetooth_anomaly.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/tests/anomaly-tester/src/com/android/settings/anomaly/tester/AnomalyActivity.java b/tests/anomaly-tester/src/com/android/settings/anomaly/tester/AnomalyActivity.java
index 8628091f8d1..6aa8edd36ff 100644
--- a/tests/anomaly-tester/src/com/android/settings/anomaly/tester/AnomalyActivity.java
+++ b/tests/anomaly-tester/src/com/android/settings/anomaly/tester/AnomalyActivity.java
@@ -16,7 +16,7 @@ package com.android.settings.anomaly.tester;
import android.app.Activity;
import android.os.Bundle;
-import com.android.settings.anomaly.tester.R;
+import android.view.View;
public class AnomalyActivity extends Activity {
@@ -25,4 +25,8 @@ public class AnomalyActivity extends Activity {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
+
+ public void startBluetoothAnomaly(View view) {
+ // Add in future cl
+ }
}