同一 LinearLayout 中的 edittext 和焦点有问题

发布于 2024-12-18 09:12:56 字数 1154 浏览 0 评论 0原文

我想知道一些事情... 我不知道为什么当我使用这个时焦点在 2 个编辑文本之间不起作用:

<LinearLayout
android:id="@+id/linearLayout2"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<EditText
    android:id="@+id/etEmail"
    android:layout_width="200dp"
    android:layout_height="30dp"
    android:textSize="10sp"
    android:hint="@string/etEmail_init"
    android:inputType="textEmailAddress" 
    android:imeOptions="actionNext"
/>
<ImageView
    android:id="@+id/ivEmail"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_vertical"
    android:contentDescription="@string/textInvalide"
    android:src="@drawable/cancel" />
<EditText
    android:id="@+id/etEmail3"
    android:layout_width="200dp"
    android:layout_height="30dp"
    android:textSize="10sp"
    android:hint="@string/etEmail_init"
    android:inputType="textEmailAddress" 
    android:imeOptions="actionNext"
/>
</LinearLayout> 

我找到的一个解决方案是将每个编辑文本放在 2 个 LinearLayout 中... 但我想做的是将这些编辑文本放在同一“行”上......

有人有想法吗? 提前谢谢! 塞巴斯蒂安

I'm wondering something...
I'm don't know why the focus don't work between the 2 edittext when i'm using this :

<LinearLayout
android:id="@+id/linearLayout2"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<EditText
    android:id="@+id/etEmail"
    android:layout_width="200dp"
    android:layout_height="30dp"
    android:textSize="10sp"
    android:hint="@string/etEmail_init"
    android:inputType="textEmailAddress" 
    android:imeOptions="actionNext"
/>
<ImageView
    android:id="@+id/ivEmail"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_vertical"
    android:contentDescription="@string/textInvalide"
    android:src="@drawable/cancel" />
<EditText
    android:id="@+id/etEmail3"
    android:layout_width="200dp"
    android:layout_height="30dp"
    android:textSize="10sp"
    android:hint="@string/etEmail_init"
    android:inputType="textEmailAddress" 
    android:imeOptions="actionNext"
/>
</LinearLayout> 

The one solution i've found is to put each edit text in 2 LinearLayout...
But what i want to do is to have these edittext on the same "line"...

Anyone have an idea ?
Thx in advance !
Sebastien

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乖乖兔^ω^ 2024-12-25 09:12:56
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content">
<EditText android:id="@+id/et1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" />
<EditText android:id="@+id/et2" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:layout_marginLeft="2dp" />
</LinearLayout>
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content">
<EditText android:id="@+id/et1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" />
<EditText android:id="@+id/et2" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:layout_marginLeft="2dp" />
</LinearLayout>
梦中楼上月下 2024-12-25 09:12:56
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_weight="1.0" android:background="#ffffff"  android:orientation="horizontal"
android:padding="1px">

    <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:orientation="vertical"  android:layout_weight="0.5">

        <EditText android:id="@+id/date" android:focusable="false"
        android:layout_width="fill_parent" android:layout_height="wrap_content" />
    </LinearLayout>

        <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:orientation="vertical"  android:layout_weight="0.5">

        <ImageView
android:id="@+id/ivEmail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:contentDescription="@string/textInvalide"
android:src="@drawable/anyimage" />
    </LinearLayout>


    <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:orientation="vertical" android:layout_weight="0.5" >

        <EditText android:id="@+id/time" android:focusable="false"
        android:layout_width="fill_parent"  android:paddingLeft="5px" android:layout_height="wrap_content"/>
    </LinearLayout>

看看这个肯定会对你有帮助 塞贝斯蒂安:)
欢迎

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_weight="1.0" android:background="#ffffff"  android:orientation="horizontal"
android:padding="1px">

    <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:orientation="vertical"  android:layout_weight="0.5">

        <EditText android:id="@+id/date" android:focusable="false"
        android:layout_width="fill_parent" android:layout_height="wrap_content" />
    </LinearLayout>

        <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:orientation="vertical"  android:layout_weight="0.5">

        <ImageView
android:id="@+id/ivEmail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:contentDescription="@string/textInvalide"
android:src="@drawable/anyimage" />
    </LinearLayout>


    <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:orientation="vertical" android:layout_weight="0.5" >

        <EditText android:id="@+id/time" android:focusable="false"
        android:layout_width="fill_parent"  android:paddingLeft="5px" android:layout_height="wrap_content"/>
    </LinearLayout>

Ckeck this out this gonna definitely help u sebestian :)
welcome

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文