- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为 GridLayout
调用 findviewbyid
,但无论我放置在哪里,它都会返回 null。在设置 contentView
并膨胀 ViewStub 后,我将其称为 onCreate()
方法。除了 mQuestionLayout
之外,content_pytanie1.xml
中的所有子项均正确返回。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_pytanie1);
ViewStub stub = (ViewStub) findViewById(R.id.layout_stub);
stub.setLayoutResource(R.layout.content_pytanie1);
stub.inflate();
mQuestionView = (TextView) findViewById(R.id.question);
mImageName = (ImageView) findViewById(R.id.iV_pytanie);
mButtonChoice1 = (RadioButton) findViewById(R.id.choice1);
mButtonChoice2 = (RadioButton) findViewById(R.id.choice2);
....
mQuestionLayout = (GridLayout) findViewById(R.id.gridLayout3); //returns null
}
此 GridLayout
位于 content_pytanie1.xml
布局中。无论我如何更改 RelativeLayout
。
<?xml version="1.0" encoding="utf-8"?>
<GridLayout 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"
tools:context="pl.epsotesty.epsotestynumeryczne.pytanie1Activity"
android:orientation="vertical"
android:animateLayoutChanges="true"
android:id="@+id/gridLayout3"
>
<ImageView
android:id="@+id/iV_pytanie"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitStart"
android:adjustViewBounds="true"
/>
<TextView
android:id="@+id/tV_p"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/tV_p"
android:textAppearance="@style/QuestionsAnswers"
android:layout_marginStart="5dp"
android:layout_marginEnd="5dp"
/>
<TextView
android:id="@+id/question"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Question"
android:textAppearance="@style/QuestionsAnswers"
android:layout_marginBottom="4dp"
android:layout_marginStart="5dp"
android:layout_marginEnd="5dp"
/>
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginTop="12dp"
android:orientation="horizontal"
android:gravity="bottom"
android:layout_gravity="center_horizontal"
android:layout_marginStart="5dp"
android:layout_marginEnd="5dp"
>
<RadioButton
android:id="@+id/choice1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="13dp"
android:layout_marginRight="13dp"
android:layout_weight="1"
android:button="@null"
android:checked="false"
android:drawableBottom="@android:drawable/btn_radio"
android:drawablePadding="2dp"
android:gravity="center|bottom"
android:layout_gravity="bottom"
android:text="fkdl;avnvbnsdk"
android:textAppearance="@style/QuestionsAnswers" />
<RadioButton
android:id="@+id/choice2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="13dp"
android:layout_marginRight="13dp"
android:layout_weight="1"
android:button="@null"
android:drawableBottom="@android:drawable/btn_radio"
android:gravity="center|bottom"
android:text="dsakdlvnvbnvnkd"
android:layout_gravity="bottom"
android:textAppearance="@style/QuestionsAnswers"
android:drawablePadding="2dp"
/>
<RadioButton
android:id="@+id/choice3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cdsadvnbvbndas"
android:layout_weight="1"
android:button="@null"
android:drawableBottom="@android:drawable/btn_radio"
android:textAppearance="@style/QuestionsAnswers"
android:layout_marginEnd="13dp"
android:gravity="center|bottom"
android:layout_gravity="bottom"
android:layout_marginRight="13dp"
android:drawablePadding="2dp"
/>
<RadioButton
android:id="@+id/choice4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Ddsadbvnva"
android:layout_weight="1"
android:button="@null"
android:drawableBottom="@android:drawable/btn_radio"
android:gravity="center|bottom"
android:textAppearance="@style/QuestionsAnswers"
android:layout_marginEnd="13dp"
android:layout_gravity="bottom"
android:layout_marginRight="13dp"
android:drawablePadding="2dp"
/>
<RadioButton
android:id="@+id/choice5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Envnvnvnnvnvbnnnmbmbnmb"
android:layout_weight="1"
android:button="@null"
android:drawableBottom="@android:drawable/btn_radio"
android:gravity="center|bottom"
android:textAppearance="@style/QuestionsAnswers"
android:layout_gravity="bottom"
android:layout_marginEnd="13dp"
android:drawablePadding="2dp"
android:layout_marginRight="13dp" />
</RadioGroup>
<TextView
android:id="@+id/wyjasnienie"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="5dp"
android:layout_marginStart="5dp"
android:text="Wyjaśnienie:"
android:textAppearance="@style/QuestionsAnswers"
/>
<TextView
android:id="@+id/tekstwyjasnienia"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginEnd="5dp"
android:layout_marginStart="5dp"
android:text="tekst wyjaśnienia"
android:textAppearance="@style/QuestionsAnswers"
/>
<TextView
android:id="@+id/zaznaczenie"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="zaznaczono"
android:textAppearance="@style/QuestionsAnswers" />
<TextView
android:id="@+id/lista"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="lista"
android:textAppearance="@style/QuestionsAnswers" />
</GridLayout>
这是activity_pytanie1.xml
。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="pl.epsotesty.epsotestynumeryczne.pytanie1Activity"
>
<android.support.design.widget.AppBarLayout
android:id="@+id/appBar2"
android:layout_width="match_parent"
android:layout_height="40dp"
android:theme="@style/AppTheme.AppBarOverlay"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="36dp"
android:orientation="horizontal">
<TextView
android:id="@+id/tVtitle"
android:layout_width="match_parent"
android:layout_height="36dp"
android:layout_gravity="center"
android:layout_weight="0.5"
android:gravity="center"
android:text="title"
android:textAlignment="textStart"
android:textSize="15sp"
android:paddingLeft="14dp"
/>
<TextView
android:id="@+id/tVcT"
android:layout_width="match_parent"
android:layout_height="36dp"
android:layout_gravity="center"
android:layout_weight="1"
android:gravity="center"
android:text="600"
/>
<Button
android:id="@+id/buttonkoniec"
android:layout_width="26dp"
android:layout_height="26dp"
android:layout_marginEnd="20dp"
android:layout_gravity="center"
android:background="@drawable/exit"
android:onClick="onClickEndTest"
/>
</LinearLayout>
<ProgressBar
android:id="@+id/progressBar"
style="@style/CustomProgressBarHorizontal4"
android:layout_width="match_parent"
android:layout_height="4dp"
android:progress="100"/>
</android.support.design.widget.AppBarLayout>
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/appBar2"
android:layout_above="@id/toolbar"
>
<ViewStub
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inflatedId="@+id/message_layout"
android:id="@+id/layout_stub" />
</ScrollView>
最佳答案
您可以在xml中添加ViewStub布局:
<ViewStub
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inflatedId="@+id/message_layout"
android:layout="@layout/content_pytanie1"
android:id="@+id/layout_stub" />
然后:
ViewStub stub = (ViewStub) findViewById(R.id.layout_stub);
stub.inflate();
或者以编程方式:
ViewStub viewStub = (ViewStub) findViewById(R.id.layout_stub);
viewStub.setLayoutResource(R.layout.content_pytanie1);
viewStub.inflate();
Explanation:
线路
android:inflatedId="@+id/message_layout"
意味着膨胀布局的id将为message_layout
,但你的GridLayout
有idgridLayout3
,这就是为什么它是null
.
因此,要么删除该行:
android:inflatedId="@+id/message_layout"
然后执行:
mQuestionLayout = (GridLayout) findViewById(R.id.gridLayout3);
或者只是这样做:
mQuestionLayout = (GridLayout) findViewById(R.id.message_layout);
关于java - 为主 GridLayout 调用 findviewbyid 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47444172/
我是 android 编程的新手,我对 View.findViewById() 和 Activity.findViewById() 很困惑,我们什么时候必须调用这些方法以及在哪个方法中调用类 find
/** * A placeholder fragment containing a simple view. */ public static class Placehol
我尝试在 java 中设置来自 TextView 的文本:首先我创建了一个这样的对象: //Property info TextView propertyInfo = (TextView) info.
[更新] -- 只是想向所有人确认,我同意使用硬编码号码总是一个坏主意。我的好奇心是在使用 Maps API 时枚举的 1、2 常量值是什么。如果我找到像 R.id.my_current_locati
在我的 fragment 的 onCreateView 方法中,我曾经将膨胀的布局存储在一个变量中,然后将后者传递给我的其他函数,这些函数在这个膨胀的 上调用了 findViewById >查看。 现
我正在尝试实现自定义数组适配器, 问题是我的代码在使用时崩溃 ImageView imageView=(ImageView)findViewById(R.id.imageView); 而不是 Ima
我想在多个 Activity 中使用 View 。就我而言,它是一个 FloatingActionButton。当我通过 findViewById 搜索 View 时,程序抛出 NullPointer
findViewById 给出一个错误,我认为这是因为它返回 null。我的应用程序被迫关闭。 SensorManager sensorManager=null; TextView x= null;
我刚刚创建了简单的应用程序并添加了按钮。 MyActivity.java package com.example.myapp; import android.app.Activity; import
我的应用程序在布局中有许多元素(远超过 100 个),并且在 MainActivity 中声明所有元素以便访问它们,这使得我的 MainActivity 类难以阅读和调试。因此,我创建了一个新类来处理
我刚刚开始android开发,我被困在这个: static Handler h = new Handler() { @Override public void handleMessag
我是一名初学者,正在磨练我的应用程序开发技能。我目前正在做一个示例,其中列表由字符串数组填充。在最后的步骤中进行绑定(bind),这是找不到方法“findviewbyid”的地方,并且在构建后显示为红
这是我函数的一部分,android studio 无法识别 findViewById 函数。谁能帮我找出问题所在吗?\ public void onClick(View v) {
我在 LinearLayout 内的相对布局内访问 TextView 时遇到问题 假设我在文件 row.xml 中有这些 View
很抱歉标题含糊不清, 下面是麻烦。我想使用 x 变量来迭代该对象,该对象在名称中使用 1 -9 值 (R.id.imageButtonx) for (int x = 1; x <10; x++)
谁能帮我找出这个程序的问题所在。在 onCreate() 方法中,findViewById() 为所有 id 返回 null,这会导致稍后出现空指针异常。我不明白为什么 findViewById()
我做错了什么,我检查了几次ID,在XML中一切正常,但是当我想构建发布应用程序时,会出现此错误,当我构建调试应用程序时,我不会出现此错误。 error: cannot find symbol
我是 Android 编程新手,所以我有一个简单的问题!我在 activity_main.xml 和 main_activity.java 中创建了一个 button 我想通过调用 findbyvie
我对 Android 开发非常陌生,所以如果我无法理解这里到底发生了什么,我很抱歉。 我创建了一个形状,如下所示。它包含在可绘制文件夹内的 shape.xml 中: 现在在我的 Acti
谁能帮我找出这个程序的问题所在。在 onCreate() 方法中,findViewById() 为所有 id 返回 null,这会导致稍后出现空指针异常。我不明白为什么 findViewById()
我是一名优秀的程序员,十分优秀!