我有一个用于给各种片段充气的父布局。在一个这样的片段布局上,我需要访问片段类中的视图元素。 我正在使用下面的代码来获取片段布局中文本视图的引用。
CreateTaskFragment.java
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
View view = getView();
endDateView = (TextView)view.findViewById(R.id.estimated_end_input);
endDateView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.i("Date","I'm clicked");
}
});
}
endDateView 正在返回 null 。
fragment_create_task.xml
<LinearLayout 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:orientation="vertical"
tools:context="com.tetrissoft.dailyplanner.CreateTaskFragment">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/estimated_end_date"
android:textSize="15sp"
android:layout_marginTop="10dp"
android:layout_marginLeft="15dp"
android:id="@+id/estimated_end_label"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/task_end_date_input"
android:textSize="18sp"
android:inputType="date"
android:layout_marginTop="20dp"
android:layout_marginLeft="15dp"
android:layout_below="@+id/estimated_end_input"/>
</LinearLayout>
MainActivity.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
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_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/drawer_layout">
<!-- The Main Content Layout -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="25dp"
app:elevation="4dp"
android:clickable="true"
android:src="@drawable/ic_create_black_24dp"
android:id="@+id/fab_button"/>
</FrameLayout>
<!-- The Navigation Drawer-->
<ListView
...
</ListView>
</android.support.v4.widget.DrawerLayout>
如何获取CreateTaskFragment视图元素的引用?
答案 0 :(得分:0)
复制片段中的下方法,并从片段
中删除onActivityCreated方法@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_create_task, container, false);
TextView endDateView = (TextView)rootView .findViewById(R.id.estimated_end_input);
endDateView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.i("Date","I'm clicked");
}
});
return rootView;
}