android: restore tabbed toolbar removed by accident

commit 1503769fe1 removed tabbed
toolbar by mistake

Change-Id: I72e408d8e67b846e227d4563a8cd8455c1e73c29
This commit is contained in:
Tomaž Vajngerl
2017-03-30 22:21:38 +02:00
parent c1769e9b27
commit d8c23a7276

View File

@@ -25,6 +25,7 @@ import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.AdapterView;
import android.widget.ListView;
import android.widget.TabHost;
import android.widget.Toast;
import org.libreoffice.overlay.DocumentOverlay;
@@ -210,6 +211,24 @@ public class LibreOfficeMainActivity extends AppCompatActivity {
mDocumentOverlay = new DocumentOverlay(this, layerView);
mToolbarController.setupToolbars();
TabHost host = (TabHost) findViewById(R.id.toolbarTabHost);
host.setup();
TabHost.TabSpec spec = host.newTabSpec("Character");
spec.setContent(R.id.tab_character);
spec.setIndicator("Character");
host.addTab(spec);
spec = host.newTabSpec("Paragraph");
spec.setContent(R.id.tab_paragraph);
spec.setIndicator("Paragraph");
host.addTab(spec);
spec = host.newTabSpec("Insert");
spec.setContent(R.id.tab_insert);
spec.setIndicator("Insert");
host.addTab(spec);
}
private void openSelectPathIntent() {