Back to project page androidui.
The source code is released under:
MIT License
If you think the Android project androidui 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 course.examples.Fragments.DynamicLayout; /* w w w .j a v a 2 s. c o m*/ 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 QuotesFragment extends Fragment { @SuppressWarnings("unused") private static final String TAG = "QuotesFragment"; private TextView mQuoteView = null; private int mCurrIdx = -1; private int mQuoteArrLen; int getShownIndex() { return mCurrIdx; } // Show the Quote string at position newIndex void showQuoteAtIndex(int newIndex) { if (newIndex < 0 || newIndex >= mQuoteArrLen) return; mCurrIdx = newIndex; mQuoteView.setText(QuoteViewerActivity.mQuoteArray[mCurrIdx]); } // Called to create the content view for this Fragment @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout defined in quote_fragment.xml // The last parameter is false because the returned // view does not need to be attached to the container ViewGroup return inflater.inflate(R.layout.quote_fragment, container, false); } // Set up some information about the mQuoteView TextView @Override public void onActivityCreated(Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); mQuoteView = (TextView) getActivity().findViewById(R.id.quoteView); mQuoteArrLen = QuoteViewerActivity.mQuoteArray.length; } }