gpt4 book ai didi

android - getParent 返回错误的 ViewGroup

转载 作者:行者123 更新时间:2023-11-29 21:28:00 26 4
gpt4 key购买 nike

当执行下面的代码时,我可以在我的 LogCat 中验证 getParent 返回另一个 ViewGroup,然后返回 FrameLayout(它返回 LinearLayout)。通常我希望 getParent 会返回框架布局...

有人知道为什么会这样吗?

Java:

    @Override
protected void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final Button button = (Button) findViewById(R.id.actionbar_btn);
if (button.getParent() instanceof FrameLayout) {
Log.v("TAG", "parent was framelayout");
} else {
Log.v("TAG", "parent was no framelayout");
}

}

xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00FF00"
android:orientation="horizontal" >

<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<Button
android:id="@+id/actionbar_home"
android:layout_width="33dp"
android:layout_height="32dp"
android:background="@drawable/ic_launcher"
/>


</FrameLayout>

.....

</LinearLayout>

</RelativeLayout>

最佳答案

难道不应该将 R.id.actionbar_btn 更改为 R.id.actionbar_home 吗?

关于android - getParent 返回错误的 ViewGroup,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20000814/

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