To disable the address bar for android chromium

806 views
Skip to first unread message

Maruthi Shanmugam

unread,
Jan 19, 2014, 11:27:15 AM1/19/14
to chromi...@chromium.org
Hi 

Is there a way to disable the address bar of the android chromium browser so the address bar is not visible when the browser is loaded. 

Please advise.

Aurimas Liutikas

unread,
Jan 21, 2014, 12:43:49 AM1/21/14
to Maruthi Shanmugam, Chromium-dev
Hello Maruthi,

I have already responded to your question on 12/12/2013.
See:

Aurimas


--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev

Norimitsu Sugiyama

unread,
Jan 27, 2014, 7:11:15 AM1/27/14
to chromi...@chromium.org, Maruthi Shanmugam
Hi

It seems that the following topic is about the ChromiumTestShell.
How about the ContentShell ?
Is it same as the following topic ?

2014年1月21日火曜日 14時43分49秒 UTC+9 Aurimas Liutikas:

Tommy Nyquist

unread,
Jan 27, 2014, 10:48:10 AM1/27/14
to s.nori...@gmail.com, chromium-dev, Maruthi Shanmugam
For the ContentShell, you could look at the following:

EditText for the URL:
org.chromium.content_shell.Shell#mUrlTextView
(//content/shell/android/java/src/org/chromium/content_shell/Shell.java)

The field @+id/url of the layout:
//content/shell/android/java/res/layout/shell_view.xml

Default URL:
org.chromium.content_shell.ShellManager#DEFAULT_SHELL_URL (///content/shell/android/java/src/org/chromium/content_shell/ShellManager.java)

Norimitsu Sugiyama

unread,
Jan 28, 2014, 1:06:19 AM1/28/14
to chromi...@chromium.org, s.nori...@gmail.com, Maruthi Shanmugam
Thank you for the information.
I have one more question.
I'd like to hide the top bar (url and prev/next button) and make the browser full screen.
I tried various flag, but not efficiency.
What should I do ?

2014年1月28日火曜日 0時48分10秒 UTC+9 Tommy Nyquist:

Ted Choc

unread,
Jan 28, 2014, 1:54:00 PM1/28/14
to s.nori...@gmail.com, Chromium-dev, Maruthi Shanmugam
On Mon, Jan 27, 2014 at 10:06 PM, Norimitsu Sugiyama <s.nori...@gmail.com> wrote:
Thank you for the information.
I have one more question.
I'd like to hide the top bar (url and prev/next button) and make the browser full screen.
I tried various flag, but not efficiency.
What should I do ?

The easiest thing I can think of is just change the view's visibility like so:

Try changing:
./content/shell/android/java/res/layout/shell_view.xml

Change this:
    <LinearLayout android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
 
To add:
        android:visibility="gone"

Becoming:
    <LinearLayout android:id="@+id/toolbar"
        android:visibility="gone"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
Reply all
Reply to author
Forward
0 new messages