Android:Eclipse 和 Android 中的布局不同模拟器

发布于 2024-12-10 21:48:01 字数 4990 浏览 0 评论 0原文

我在 Eclipse 中使用图形布局创建了一个布局,

我在 Eclipse 中看到的内容

.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" android:weightSum="1">
    <RelativeLayout android:id="@+id/relativeLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <AutoCompleteTextView android:layout_height="wrap_content" android:id="@+id/autoCompleteTextView1" android:layout_width="fill_parent" android:layout_below="@+id/textView1" android:layout_alignParentLeft="true" android:text="@string/emptyString"></AutoCompleteTextView>
        <TextView android:layout_height="wrap_content" android:textSize="20sp" android:id="@+id/textView1" android:layout_width="wrap_content" android:text="@string/toString" android:layout_alignParentTop="true" android:layout_alignParentLeft="true"></TextView>
        <LinearLayout android:id="@+id/linearLayout1" android:layout_height="wrap_content" android:layout_below="@+id/autoCompleteTextView1" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:layout_width="fill_parent">
            <Button android:layout_height="wrap_content" android:layout_weight="0.33333333" android:id="@+id/buttonContacts" android:text="@string/contactsString" android:textSize="17sp" android:layout_width="fill_parent"></Button>
            <Button android:layout_height="wrap_content" android:layout_weight="0.33333333" android:id="@+id/buttonGroups" android:text="@string/groupsString" android:textSize="17sp" android:layout_width="fill_parent"></Button>
            <Button android:text="@string/favouritesString" android:layout_height="wrap_content" android:id="@+id/buttonFavourites" android:layout_weight="0.33333333" android:textSize="17sp" android:layout_width="fill_parent"></Button>
        </LinearLayout>
        <TextView android:layout_height="wrap_content" android:textSize="20sp" android:id="@+id/textView3" android:layout_width="fill_parent" android:text="@string/repetition" android:layout_below="@+id/editText1" android:layout_alignParentLeft="true"></TextView>
        <Spinner android:layout_width="fill_parent" android:id="@+id/spinner" android:layout_height="wrap_content" android:prompt="@string/repetition" android:layout_below="@+id/textView3" android:layout_alignParentLeft="true"></Spinner>
        <LinearLayout android:layout_width="wrap_content" android:id="@+id/linearLayout2" android:layout_height="wrap_content" android:layout_alignTop="@+id/button1" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:layout_alignParentBottom="true">
            <Button android:layout_height="wrap_content" android:id="@+id/button2" android:textSize="17sp" android:layout_width="fill_parent" android:layout_weight="0.50" android:text="@string/button_ok"></Button>
            <Button android:layout_height="wrap_content" android:id="@+id/button1" android:textSize="17sp" android:layout_weight="0.5" android:layout_width="fill_parent" android:text="@string/button_cancel"></Button>
        </LinearLayout>
        <TextView android:layout_height="wrap_content" android:textSize="20sp" android:id="@+id/textView2" android:layout_width="fill_parent" android:text="@string/messageString" android:layout_below="@+id/linearLayout1" android:layout_alignParentLeft="true"></TextView>
        <ImageButton android:layout_width="wrap_content" android:src="@drawable/button_time" android:layout_height="wrap_content" android:background="@drawable/background_black" android:id="@+id/imageButton1" android:layout_below="@+id/spinner" android:layout_toRightOf="@+id/textView1"></ImageButton>
        <ImageButton android:layout_width="wrap_content" android:src="@drawable/button_date" android:layout_height="wrap_content" android:background="@drawable/background_black" android:id="@+id/imageButton2" android:layout_alignTop="@+id/imageButton1" android:layout_alignParentRight="true" android:layout_marginRight="60dp"></ImageButton>
        <EditText android:id="@+id/editText1" android:layout_below="@+id/textView2" android:layout_alignParentLeft="true" android:layout_width="fill_parent" android:gravity="top|left" android:layout_height="110dp">
            <requestFocus></requestFocus>
        </EditText>

    </RelativeLayout>

</LinearLayout>

这是应用程序启动时我在模拟器中看到的方式

“这就是我应用程序启动时在模拟器中看到它

这是我更改列表中选择的内容后在模拟器中看到的方式

这是我更改列表中选择的内容后在模拟器中看到的方式

知道这里出了什么问题吗?

I created a layout with the Graphical layout in Eclipse,

What I see in Eclipse

this is how I see it in Eclipse

the .xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" android:weightSum="1">
    <RelativeLayout android:id="@+id/relativeLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <AutoCompleteTextView android:layout_height="wrap_content" android:id="@+id/autoCompleteTextView1" android:layout_width="fill_parent" android:layout_below="@+id/textView1" android:layout_alignParentLeft="true" android:text="@string/emptyString"></AutoCompleteTextView>
        <TextView android:layout_height="wrap_content" android:textSize="20sp" android:id="@+id/textView1" android:layout_width="wrap_content" android:text="@string/toString" android:layout_alignParentTop="true" android:layout_alignParentLeft="true"></TextView>
        <LinearLayout android:id="@+id/linearLayout1" android:layout_height="wrap_content" android:layout_below="@+id/autoCompleteTextView1" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:layout_width="fill_parent">
            <Button android:layout_height="wrap_content" android:layout_weight="0.33333333" android:id="@+id/buttonContacts" android:text="@string/contactsString" android:textSize="17sp" android:layout_width="fill_parent"></Button>
            <Button android:layout_height="wrap_content" android:layout_weight="0.33333333" android:id="@+id/buttonGroups" android:text="@string/groupsString" android:textSize="17sp" android:layout_width="fill_parent"></Button>
            <Button android:text="@string/favouritesString" android:layout_height="wrap_content" android:id="@+id/buttonFavourites" android:layout_weight="0.33333333" android:textSize="17sp" android:layout_width="fill_parent"></Button>
        </LinearLayout>
        <TextView android:layout_height="wrap_content" android:textSize="20sp" android:id="@+id/textView3" android:layout_width="fill_parent" android:text="@string/repetition" android:layout_below="@+id/editText1" android:layout_alignParentLeft="true"></TextView>
        <Spinner android:layout_width="fill_parent" android:id="@+id/spinner" android:layout_height="wrap_content" android:prompt="@string/repetition" android:layout_below="@+id/textView3" android:layout_alignParentLeft="true"></Spinner>
        <LinearLayout android:layout_width="wrap_content" android:id="@+id/linearLayout2" android:layout_height="wrap_content" android:layout_alignTop="@+id/button1" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:layout_alignParentBottom="true">
            <Button android:layout_height="wrap_content" android:id="@+id/button2" android:textSize="17sp" android:layout_width="fill_parent" android:layout_weight="0.50" android:text="@string/button_ok"></Button>
            <Button android:layout_height="wrap_content" android:id="@+id/button1" android:textSize="17sp" android:layout_weight="0.5" android:layout_width="fill_parent" android:text="@string/button_cancel"></Button>
        </LinearLayout>
        <TextView android:layout_height="wrap_content" android:textSize="20sp" android:id="@+id/textView2" android:layout_width="fill_parent" android:text="@string/messageString" android:layout_below="@+id/linearLayout1" android:layout_alignParentLeft="true"></TextView>
        <ImageButton android:layout_width="wrap_content" android:src="@drawable/button_time" android:layout_height="wrap_content" android:background="@drawable/background_black" android:id="@+id/imageButton1" android:layout_below="@+id/spinner" android:layout_toRightOf="@+id/textView1"></ImageButton>
        <ImageButton android:layout_width="wrap_content" android:src="@drawable/button_date" android:layout_height="wrap_content" android:background="@drawable/background_black" android:id="@+id/imageButton2" android:layout_alignTop="@+id/imageButton1" android:layout_alignParentRight="true" android:layout_marginRight="60dp"></ImageButton>
        <EditText android:id="@+id/editText1" android:layout_below="@+id/textView2" android:layout_alignParentLeft="true" android:layout_width="fill_parent" android:gravity="top|left" android:layout_height="110dp">
            <requestFocus></requestFocus>
        </EditText>

    </RelativeLayout>

</LinearLayout>

this is how I see it in the emulator when the app starts

this is how I see it in the emulator when the app starts

this is how I see it in the emulator after I change what I choose in the list

this is how I see it in the emulator after I change what I choose in the list

Any idea what is wrong here ?

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

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

发布评论

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

评论(1

樱桃奶球 2024-12-17 21:48:01

当您引用 id 时,不应有“+”。
这不好:

android:layout_below="@+id/editText1"

这很好:

android:layout_below="@id/editText1"

仅在元素定义中使用“@+id/...”。

When you reference to id there should not be a "+" there.
This is bad:

android:layout_below="@+id/editText1"

This is good:

android:layout_below="@id/editText1"

Use "@+id/..." only in element definition.

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