2017-07-16 10 views
-1

を応答しない、私はここで断片検索ボックスは、私はプロセスが成功したが、私は今日のページを検索する際に問題がある明日のページを検索するとき、私は問題を抱えているこんにちは

に問題を使用:https://www.youtube.com/watch?v=FiHGME6i97I&feature=youtu.be

コード:

public void btn_search(View view) { 
    TextView txtexample = (TextView)findViewById(R.id.txtexample); 
    txtexample.setText("hello"); 
} 

フラグメント日

<FrameLayout 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="com.example.user.weather.Fragment_days"> 

    <!-- TODO: Update blank fragment layout --> 
    <TextView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:id="@+id/txtexample" 
     android:text="@string/hello_blank_fragment" /> 

</FrameLayout> 

断片日

@Override 
public View onCreateView(LayoutInflater inflater, ViewGroup container, 
         Bundle savedInstanceState) { 
    View v = inflater.inflate(R.layout.fragment_days, container, false); 
    return v; 
} 

と今日と明日の断片は空です。

2週間前に私は(txtexampleで2行に注意してください)以下を使用し、問題

答えて

0

を探していた、私を助けてください:

@Override 
public View onCreateView(LayoutInflater inflater, ViewGroup container, 
         Bundle savedInstanceState) { 
    View v = inflater.inflate(R.layout.fragment_days, container, false); 

    TextView txtexample = (TextView)v.findViewById(R.id.txtexample);          
    return v; 
} 

public void btn_search(View view) { 
    txtexample.setText("hello"); 
} 
+0

作業いけない:( –

+0

今日のページまたは10日間を検索するときは、プログラムを終了してください。 –

+0

最初の断片になっているので、明らかにクラッシュします。 onresume()メソッド –

関連する問題