如何定位Android文本选择菜单

时间:2013-03-09 18:50:14

标签: android

我在main.xml文件中的线性布局中放置了一些EditText控件。每当您单击以选择文本时,Android默认文本选择菜单将显示在顶部,并替换布局中的内容。如何让文本选择菜单仍然出现,但不影响视图中元素的布局?具体来说,我想控制文本选择菜单在屏幕上出现的位置。

enter image description here

  <?xml version="1.0" encoding="utf-8"?>
    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >
      <EditText

            android:inputType="textFilter|textMultiLine"
            android:textSize="10sp" />
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"    
        android:paddingTop="0dp"
        android:paddingBottom="0dp"
        android:paddingLeft="8dp"
        android:paddingRight="8dp"
            android:orientation="horizontal" >
        <Button
                android:id="@+id/button2"
        android:paddingBottom="8dp"      
                android:layout_width="wrap_content"
            android:layout_height="26sp"      
         android:textSize="8sp"      
                android:text="save"/>
      </LinearLayout>
    </LinearLayout>

0 个答案:

没有答案