gpt4 book ai didi

android - 如何在我的类(class)中找到 FrameLayout

转载 作者:搜寻专家 更新时间:2023-11-01 08:50:21 25 4
gpt4 key购买 nike

我有一个 XML 文件,其中有一个 FrameLayout,在其中还有另一个 FrameLayout

我是我的类(class),我想显示屏幕并隐藏另一个屏幕内的 FrameLayout,当用户单击按钮时,FrameLayout 被隐藏出现,但出现错误。

是否可以通过 findViewById 在另一个框架中找到这个 Framelayout

我的代码:

XML:

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

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:orientation="vertical" >

<TextView
android:id="@+id/textViewTimer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="90dp"
android:layout_gravity="center_horizontal"
android:textColor = "@color/white"
android:text="."
android:textSize="70sp" />

<ImageView
android:id="@+id/imageViewwaves_startScreen"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:src="@drawable/waves" />

<FrameLayout
android:id="@+id/teamInfoLayout"
android:layout_width="275dp"
android:layout_height="300dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="160dp"
android:background="@color/white"
>

<TextView
android:id="@+id/textViewMyTeams"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="80dp"
android:textSize="20sp"
android:text="My Teams:"
/>

<TextView
android:id="@+id/textViewClickOnTeamName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="30dp"
android:textSize="13sp"
android:text="(Click on a team name to race for that team)"
/>


</FrameLayout>

</FrameLayout>

类:

ImageView waves;
View layout;
LayoutParams layoutParams, layoutParamsTextView;
FrameLayout layoutteamInfo;
private static float dx =0, dy=0, x= 0, y=0;


public ShowInfo(Context context) {
super(context);
waves = (ImageView) findViewById(R.id.imageViewwaves_startScreen);
layoutteamInfo = new FrameLayout(getContext());
layoutteamInfo = (FrameLayout) findViewById(R.id.teamInfoLayout);
}


public void hideImages()
{

layoutteamInfo.setVisibility(View.INVISIBLE);
waves.setVisibility(View.INVISIBLE); //Waves are gone

}

因评论而更新:

所以,我的 logcats 显示:

06-06 16:42:33.800: E/AndroidRuntime(2073): Caused by: java.lang.NullPointerException 06-06 16:42:33.800: E/AndroidRuntime(2073): at com.qwantech.workshape.ShowInfo.hideImages(ShowInfo.java:33) 06-06 16:42:33.800: E/AndroidRuntime(2073): at com.qwantech.workshape.Start.onCreate(Start.java:47)

我创建了另一个类“ShowInfo extends View”来处理图像和布局。

这些代码在那里。

在我的类(class)“Starts”中,我创建了一个对象:

ShowInfo showObj = new ShowInfo(getContext());

StartonCreate 中,我调用:

showObj.hideImages();

我在调用此函数时遇到错误。

最佳答案

由于您在另一个类中工作,因此您需要传递 View 的根元素才能使用 findViewById()。否则,您的类脱离上下文,无法访问 View 元素。

mRootView.findViewById(R.id.teamInfoLayout) 应该有效。

关于android - 如何在我的类(class)中找到 FrameLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24090184/

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