Fixed wrong visibility setting of bookmark list view
This commit is contained in:
parent
c99d4648ff
commit
f00a3d95d9
@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!--
|
<!--
|
||||||
/*
|
/*
|
||||||
Main screen layout
|
Main screen layout
|
||||||
|
|
||||||
@ -8,35 +8,30 @@
|
|||||||
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
|
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
|
||||||
If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
*/
|
*/
|
||||||
-->
|
-->
|
||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent" >
|
||||||
>
|
|
||||||
|
|
||||||
<!-- Dummy item to prevent SuperBarView from receiving focus (and showing the keyboard) -->
|
<!-- Dummy item to prevent SuperBarView from receiving focus (and showing the keyboard) -->
|
||||||
<LinearLayout
|
|
||||||
android:focusable="true" android:focusableInTouchMode="true"
|
|
||||||
android:layout_width="0px" android:layout_height="0px"/>
|
|
||||||
|
|
||||||
<include android:id="@+id/superBar" layout="@layout/super_bar" android:layout_alignParentTop="true" />
|
<LinearLayout
|
||||||
|
android:layout_width="0px"
|
||||||
|
android:layout_height="0px"
|
||||||
|
android:focusable="true"
|
||||||
|
android:focusableInTouchMode="true" />
|
||||||
|
|
||||||
|
<include
|
||||||
|
android:id="@+id/superBar"
|
||||||
|
android:layout_alignParentTop="true"
|
||||||
|
layout="@layout/super_bar" />
|
||||||
|
|
||||||
<ListView
|
<ListView
|
||||||
android:id="@+id/listViewBookmarks"
|
android:id="@+id/listViewBookmarks"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_below="@id/superBar"
|
android:layout_below="@id/superBar"
|
||||||
android:divider="@android:drawable/divider_horizontal_dark"
|
android:divider="@android:drawable/divider_horizontal_dark"
|
||||||
android:dividerHeight="1dp"
|
android:dividerHeight="1dp" />
|
||||||
android:visibility="gone"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<WebView
|
</RelativeLayout>
|
||||||
android:id="@+id/webViewWelcome"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_below="@id/superBar"
|
|
||||||
android:fillViewport="true"
|
|
||||||
/>
|
|
||||||
|
|
||||||
</RelativeLayout>
|
|
Loading…
Reference in New Issue
Block a user