lightning-i2p/res/layout/two_line_autocomplete.xml
Anthony Restaino 0510d02988 updated to 2.3.0
- new full-screen UI
- tweaked icon
- Animations
- better rendering
- better performance in full-screen
- lower battery consumption
- Chinese traditional language added
- Chinese simplified language added
- French Language added
- fixed errors in settings
- fixed errors with bookmarks
- added auto-complete when searching using browser history
- now uses the standard android history
- UI tweaks
- NOTE: you cannot have bookmarks as your homescreen in fullscreen
2013-03-12 14:49:30 -04:00

29 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/button"
android:clickable="false"
>
<TextView
android:id="@+id/title"
android:clickable="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="#000000"
android:textAppearance="?android:attr/textAppearanceMedium"
android:paddingLeft="6dip"
android:paddingTop="10dip"/>
<TextView
android:id="@+id/url"
android:clickable="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="@color/dark"
android:paddingLeft="6dip"
android:paddingTop="5dip"
android:paddingBottom="10dip"/>
</LinearLayout>