tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

geckoview_activity.xml (1421B)


      1 <androidx.coordinatorlayout.widget.CoordinatorLayout
      2                xmlns:android="http://schemas.android.com/apk/res/android"
      3                xmlns:app="http://schemas.android.com/apk/res-auto"
      4                android:id="@+id/main"
      5                android:layout_width="match_parent"
      6                android:layout_height="match_parent">
      7 
      8    <org.mozilla.geckoview_example.NestedGeckoView
      9        android:id="@+id/gecko_view"
     10        android:layout_width="match_parent"
     11        android:layout_height="match_parent"
     12        android:scrollbars="none"
     13        app:layout_behavior="org.mozilla.geckoview_example.GeckoViewBottomBehavior"
     14        />
     15 
     16    <androidx.appcompat.widget.Toolbar
     17            android:id="@+id/toolbar"
     18            android:layout_width="match_parent"
     19            android:layout_height="?android:actionBarSize"
     20            android:layout_gravity="bottom"
     21            android:background="#eeeeee"
     22            app:layout_behavior="org.mozilla.geckoview_example.ToolbarBottomBehavior"
     23            app:layout_scrollFlags="scroll|enterAlways|snap|exitUntilCollapsed" />
     24 
     25    <ProgressBar
     26            android:id="@+id/page_progress"
     27            style="@style/Base.Widget.AppCompat.ProgressBar.Horizontal"
     28            android:layout_width="match_parent"
     29            android:layout_height="3dp"
     30            android:layout_alignTop="@id/gecko_view" />
     31 
     32 </androidx.coordinatorlayout.widget.CoordinatorLayout>