Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to set text in Toolbar in android

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 16.1k
    Comment on it

    In the below exmaple I have created Toolbar. Here I have used In activity_main xml.layout a toolbar and TextView, and In MainActivity I have used toast function. You can see the below example it will clearly describe you how to create Toolbar with text.

    Step(1)activity_main.xml layout-

    1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    2. xmlns:tools="http://schemas.android.com/tools"
    3. android:layout_width="match_parent"
    4. android:layout_height="match_parent"
    5. tools:context=".MainActivity">
    6.  
    7. <android.support.v7.widget.Toolbar
    8. android:id="@+id/toolbar"
    9. android:minHeight="?attr/actionBarSize"
    10. android:background="@color/ColorPrimary"
    11. android:layout_width="match_parent"
    12. android:layout_height="64dp">
    13. <TextView
    14. android:layout_width="wrap_content"
    15. android:layout_height="wrap_content"
    16. android:text="Evon"
    17. android:textSize="15dp"
    18. android:textStyle="bold"/>
    19.  
    20. </android.support.v7.widget.Toolbar>
    21.  
    22.  
    23. </RelativeLayout>

    Step(2)MainActivity-

    1. public class MainActivity extends ActionBarActivity {
    2.  
    3. @Override
    4. protected void onCreate(Bundle savedInstanceState) {
    5. super.onCreate(savedInstanceState);
    6. setContentView(R.layout.activity_main);
    7.  
    8. setTitle(null);
    9.  
    10. Toolbar topToolBar = (Toolbar)findViewById(R.id.toolbar);
    11. setSupportActionBar(topToolBar);
    12. topToolBar.setLogo(R.drawable.wordpress);
    13. topToolBar.setLogoDescription(getResources().getString(R.string.logo_desc));
    14. }
    15.  
    16. @Override
    17. public boolean onCreateOptionsMenu(Menu menu) {
    18. // Inflate the menu; this adds items to the action bar if it is present.
    19. getMenuInflater().inflate(R.menu.menu_main, menu);
    20. return true;
    21. }
    22.  
    23. @Override
    24. public boolean onOptionsItemSelected(MenuItem item) {
    25. int id = item.getItemId();
    26. if (id == R.id.action_settings) {
    27. return true;
    28. }
    29. if(id == R.id.action_refresh){
    30. Toast.makeText(MainActivity.this, "Refresh App", Toast.LENGTH_LONG).show();
    31. }
    32. if(id == R.id.action_new){
    33. Toast.makeText(MainActivity.this, "Create Text", Toast.LENGTH_LONG).show();
    34. }
    35. return super.onOptionsItemSelected(item);
    36. }
    37. }

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: