Im using the android bluetooth le GATT example project in Android Studio 1.5.1. Im using it as a base project because I need the bt connection stuff anyway.
But after connection I want to add a table view where I can insert many rows and columns. I was thinking of just dragging a table layout in the listitem_devices.xml but then realized that this is just a temporary layout which displays the devices to connect with. So im looking in the layout folder to see what the main view is so that i can add my table there but I dont understand it. I have these 3 layout/*.xml files: 1. actionbar_indeterminate_progress.xml 2. gatt_services_characteristics.xml 3. listitem_devices.xml The actionbar is just a progress bar on the top left corner. The gatt_services looks to be a popup of some sort and so does the listitem xml. The project has 4 java files: 1. DeviceScanActivity.java which appears to be the default activity from the AndroidManifest. 2. DeviceControlActivity.java 3. BluetoothLEService.java which has the BT adapter and connection code 4. SampleGattAttributes.java which displays attributes of a given device. How do I add a new view such that it is presented after the device has been picked and connected to from the list so that I can drop my tableview layout in there? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/android-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/android-developers/07ca6947-cc97-40ab-847f-1c5281336e81%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

