Back to project page myAndroidApps.
The source code is released under:
This is my first GitHub try. Be gentle :)
If you think the Android project myAndroidApps 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 gidy.medappnem.activities; // w w w. j a v a 2s. co m import gidy.medappnem.R; import android.os.Bundle; import android.view.Menu; import android.widget.TextView; public class MeningitisActivity extends MedicalIssueActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setTheme(R.style.MedAppTheme); setContentView(R.layout.activity_meningitis); TextView instruction1 = (TextView) findViewById(R.id.instruction1); instruction1.setText("\u200F????? ???? ????? ??????? ?????? ????? - ??? ??? ???? ???? "); TextView instruction2 = (TextView) findViewById(R.id.instruction2); instruction2.setText("\u200F????? ???? ??????? ?? ????? ???? ??????? ????"); TextView instruction3 = (TextView) findViewById(R.id.instruction3); instruction3.setText("\u200F????? ?????? ?????"); TextView instruction4 = (TextView) findViewById(R.id.instruction4); instruction4.setText("\u200F???? ??? ????? ???????? ???:"); TextView instruction5 = (TextView) findViewById(R.id.instruction5); instruction5.setText("\u200F???? ?? ????? ????? ????? ?? ????? ????????"); logger.debug("Meningitis entered"); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.meningitis, menu); return true; } }