• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2
3<LinearLayout
4        xmlns:android="http://schemas.android.com/apk/res/android"
5        android:layout_width="wrap_content"
6        android:layout_height="wrap_content"
7        >
8    <EditText
9            android:id="@+id/edit_text"
10            android:layout_width="fill_parent"
11            android:layout_height="10dip"
12            />
13    <FrameLayout>
14        <requestFocus/>
15        <!-- focus should be given to the FrameLayout, *not* the EditText -->
16    </FrameLayout>
17    <View/>
18</LinearLayout>