gpt4 book ai didi

android - Eclipse Content Assist 不适用于 Android 布局

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:15:03 25 4
gpt4 key购买 nike

每当我在 android.support.v4.widget.DrawerLayout 中的 ViewGroup 中有 View 时,Eclipse 的自动完成功能就会开始异常工作。它不显示大部分属性

DrawerLayout -> LinearLayout -> ImageView 示例:

Autocomplete not working

在前面的屏幕截图中,您可以看到我输入了“android:scale...”,IDE 的智能感知没有向我显示 ImageView 的 android:scaleType

如果我为 ImageView 使用 Eclipse 的 Properties 窗口,我可以看到它只显示“View”的基本属性(而不是 ImageView ...):

Eclipse Property Window

现在如果 ImageView 不是 DrawerLayout 的后代并且我将它放在其他地方,自动完成功能将正常工作:

Now It Works...

我看过相关问题,例如:

但他们已经死了好一阵子没有答案了......

内容辅助不适用于我在 DrawerLayout 中添加的 View (无论是 TextView、EditText、Buttons...)。它仅建议“基本”属性。

有人知道为什么会发生这种情况或如何解决这个问题吗?

示例布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >

<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/some_image" />
</LinearLayout>

<RelativeLayout
android:id="@+id/drawer_view"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start" >
</RelativeLayout>

</android.support.v4.widget.DrawerLayout>

最佳答案

为了结束这个 5 个月大的问题,我将引用并 link to Atul O Holic's answer .感谢 Dileep Perla 指点我。

When using support package Widgets this is a common scenario (a weird one too).

Here you using, android.support.v4.widget.DrawerLayout and hence the issue. Happened with me a lot of time.

You can also try couple of options mentioned here.

关于android - Eclipse Content Assist 不适用于 Android 布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23839710/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com