如何解析在setContentView()之后返回Null的findViewByID()



布局文件中有一个Button元素,即id为@+id/add_site_sheet_add_site_buttonadd_site_bottom_sheet.xml

在我的SitesActivity.java中,在onCreate()中,我调用buildAddSiteSheet()

在这个方法中,我创建了一个BottomSheetDialog的实例,然后调用setContentView(R.layout.add_site_bottom_sheet)

setContentView(...)之后,我用findViewById(R.id.add_site_sheet_add_site_button)分配Button addSiteButton,但这是返回null

我找了很多地方,现在都找不到任何答案。

我想知道你们这些可爱的人会不会让一个间谍监视我的代码,看看我是否遗漏了什么。

SitesActivity.java


public class SitesActivity extends AppCompatActivity {
ITrapLossCalculator calc;
ICustomer customer;
Controller controller;
RecyclerView recyclerView;
SitesRecyclerViewAdapter recyclerAdapter;
RecyclerView.LayoutManager recyclerManager;
FloatingActionButton fab;
BottomSheetDialog addSiteSheet;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.sites_screen);
buildAppBar();           //method is omitted from this class
Intent intent = getIntent();
controller = intent.getParcelableExtra(CustomersActivity.EXTRA_CONTROLLER);
calc = controller.getLossCalculator();
customer = intent.getParcelableExtra(EXTRA_CUSTOMER);
setTitle(customer.getName());
buildRecyclerView();    //method is omitted from this class
buildFAB();             //method is omitted from this class
buildAddSiteSheet(); 
}
private void buildAddSiteSheet(){
Button addSiteButton;
addSiteSheet = new BottomSheetDialog(this);
addSiteSheet.setContentView(R.layout.add_site_bottom_sheet);
// addSiteButton below is null.
addSiteButton = findViewById(R.id.add_site_sheet_add_site_button);
addSiteButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//TODO - Callback to add site to model needs to be implemented.
}
});
}
}

add_site_bottom_sheet.xml


<?xml version="1.0" encoding="utf-8"?>
<GridLayout
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/BoilerAndValve"
android:background="@color/colorBandVAccent"
android:columnCount="2"
android:rowCount="4">
<EditText
android:id="@+id/add_site_sheet_address_line_1_entry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="text"
android:layout_column="0"
android:layout_row="0"
android:layout_columnWeight="1"
android:hint="@string/add_new_site_sheet_address_line_1_hint"
android:autofillHints="no"
tools:targetApi="o" />
<EditText
android:id="@+id/add_site_sheet_address_line_2_entry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="text"
android:layout_column="0"
android:layout_row="1"
android:layout_columnWeight="1"
android:hint="@string/add_new_site_sheet_address_line_2_hint"
android:autofillHints="no"
tools:targetApi="o"/>
<EditText
android:id="@+id/add_site_sheet_address_line_3_entry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="text"
android:layout_column="0"
android:layout_row="2"
android:layout_columnWeight="1"
android:hint="@string/add_new_site_sheet_address_line_3_hint"
android:autofillHints="no"
tools:targetApi="o"/>
<EditText
android:id="@+id/add_site_sheet_postcode_entry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="text"
android:layout_column="0"
android:layout_row="3"
android:layout_columnWeight="1"
android:hint="@string/add_new_site_sheet_postcode_hint"
android:autofillHints="no"
tools:targetApi="o"/>
<EditText
android:id="@+id/add_site_sheet_name_entry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="text"
android:layout_column="1"
android:layout_row="0"
android:layout_columnWeight="1"
android:hint="@string/add_new_site_sheet_name_hint"
android:autofillHints="no"
tools:targetApi="o"/>

<EditText
android:id="@+id/add_site_sheet_phone_entry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="phone"
android:layout_column="1"
android:layout_row="1"
android:layout_columnWeight="1"
android:hint="@string/add_new_site_sheet_phone_hint"
android:autofillHints="no"
tools:targetApi="o"/>
<Button
android:id="@+id/add_site_sheet_add_site_button"
android:layout_column="1"
android:layout_row="3"
android:layout_columnWeight="1"
android:text="@string/add_site_button_text"/>

</GridLayout>

我已经在SitesActivity.java中提交了一些方法,我认为这些方法与保持SO上的可读性完全无关,但如果有人认为其中可能有任何内容,我很乐意编辑以包含其他方法。

我还想补充一点,我已经尝试从add_site_bottom_sheet.xml中获取所有其他元素,但findViewById(...)也会为这些元素返回null。

我没有任何重复的布局,也没有任何其他大小的布局,所以我不知所措!

请使用

addSiteButton =(Button) addSiteSheet.findViewById(R.id.add_site_sheet_add_site_button);

相关内容

  • 没有找到相关文章

最新更新