我有一个XML
文件,其中有一个FrameLayout
,其中有另一个FrameLayout
。
我的课程,我想要显示屏幕并隐藏另一个内部的FrameLayout
,当用户点击按钮时,FrameLayout
被隐藏了,但我得到了一个错误。
是否可以通过Framelayout
在另一个内找到此findViewById
?
我的代码:
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):引起: 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”来处理图像和布局。
这些代码在那里。
在我的班级“开始”中,我创建了一个对象:
ShowInfo showObj = new ShowInfo(getContext());
在我的onCreate
Start
我打电话:
showObj.hideImages();
我在调用此函数时收到错误。
答案 0 :(得分:1)
您可以做的是使用layout.findViewById(...)
来扩充XML布局文件并找到您的框架示例:
LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
FrameLayout layout = (FrameLayout) inflater.inflate(R.layout.yourfilename, null);
FrameLayout layoutteamInfo = (FrameLayout) layout.findViewById(R.id.teamInfoLayout);
这将获取xml文件中的第二个framelayout
答案 1 :(得分:1)
你这样做:
waves = (ImageView) findViewById(R.id.imageViewwaves_startScreen);
但是您的XML中没有具有此id的ImageView:imageViewwaves_startScreen。 您必须使用该ID
在Xml中创建一个ImageView尝试为您的第一个FrameLayout提供ID。
如果这不起作用,而不是尝试复制你为处理布局所做的这个类,那么对于你的Activity类来说,如果这样做就意味着raybaybay的答案是解决方案
答案 2 :(得分:1)
由于您正在使用其他类,因此需要传递视图的根元素才能使用findViewById()
。否则,您的类已脱离上下文,无法访问视图元素。
mRootView.findViewById(R.id.teamInfoLayout)
应该有用。