Back to project page odcontrol-voice.
The source code is released under:
GNU General Public License
If you think the Android project odcontrol-voice listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package cl.mamd.voice.tabfragment; /* ww w .ja va 2 s. co m*/ import cl.mamd.voice.R; import android.app.Fragment; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; public class FragmentDevice extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View V = inflater.inflate(R.layout.fragment_device, container, false); TextView test = (TextView)V.findViewById(R.id.textView1test); test.setText(getArguments().getString("TEST")); return V; } }