我是Android開發新手,當然還有片段。findViewById在使用片段時返回NULL
我想訪問的主要活動我的片段的控制,但「findViewById」返回null。沒有代碼的 代碼工作正常。
這裏是我的代碼部分:
的片段:
<?xml version="1.0" encoding="utf-8"?>
<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="wrap_content"
android:orientation="vertical"
tools:ignore="HardcodedText" >
<EditText
android:id="@+id/txtXML"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:ems="10"
android:scrollbars="vertical">
</EditText>
</LinearLayout>
MainActivity的OnCreate:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.setContentView(R.layout.main);
this.initialisePaging();
EditText txtXML = (EditText) findViewById(R.id.txtXML);}
在這一點上txtXML爲空。
我的代碼中有什麼遺漏或我應該怎麼做?
請將您的initialisePaging()方法發佈 – blacharnia
''this.initialisePaging();''只需將片段添加到viewPager – mammadalius