ToolBar mit Button Tutorial
1 - Fügen Sie die Bibliothekskompatibilität hinzu build.gradle
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
}
2 - Erstellen Sie einen Dateinamen color.xml
, um die Toolbar
Farben zu definieren
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ColorPrimary">#FF5722</color>
<color name="ColorPrimaryDark">#E64A19</color>
</resources>
3 - Ändern Sie Ihre style.xml
Datei
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/ColorPrimary</item>
<item name="colorPrimaryDark">@color/ColorPrimaryDark</item>
<!-- Customize your theme here. -->
</style>
</resources>
4 - Erstellen Sie eine XML-Datei wie tool_bar.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:elevation="4dp" />
5 - Nehmen Sie das Toolbar
in Ihremain_activity.xml
<RelativeLayout 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=".MainActivity">
<include
android:id="@+id/tool_bar"
layout="@layout/tool_bar" />
<TextView
android:layout_below="@+id/tool_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/TextDimTop"
android:text="@string/hello_world" />
</RelativeLayout>
6 - Dann legen Sie es in Ihre MainActivity
Klasse
package com.example.hp1.materialtoolbar;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.Toolbar;
import android.view.Menu;
import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.widget.Toast;
/* When using AppCompat support library
* (you need to extend Main Activity to
* ActionBarActivity)
* ActionBarActivity has deprecated, use AppCompatActivity
*/
public class MainActivity extends ActionBarActivity {
// Declaring the Toolbar Object
private Toolbar toolbar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_activity);
// Attaching the layout to the toolbar object
toolbar = (Toolbar) findViewById(R.id.tool_bar);
// Setting toolbar as the ActionBar with setSupportActionBar() call
setSupportActionBar(toolbar);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
7 - Und schließlich, fügen Sie Ihre „Button Items“ auf die menu_main.xml
Innenseite des /res/menu/
Verzeichnisses
<?xml version="1.0" encoding="utf-8"?>
<menu
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".MainActivity">
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:title="@string/action_settings"
app:showAsAction="never" />
<item
android:id="@+id/action_search"
android:orderInCategory="200"
android:title="Search"
android:icon="@drawable/ic_search"
app:showAsAction="ifRoom"/>
<item
android:id="@+id/action_user"
android:orderInCategory="300"
android:title="User"
android:icon="@drawable/ic_user"
app:showAsAction="ifRoom" />
</menu>
item
in der Symbolleiste ... es gibt einen Unterschied zwischen Schaltfläche und Element: PDie Anpassung der Symbolleiste kann auf folgende Arten erfolgen
Schreiben Sie die Schaltfläche und den TextViews-Code in die Symbolleiste, wie unten gezeigt
Eine andere Möglichkeit ist die Verwendung des Elementmenüs wie unten gezeigt
quelle
layout_gravity
Attribut ist nicht verfügbarRelativeLayout
(die Breite auf einstellenmatch_parent
) und anwendenlayout_alignParentEnd="true"
.match_parent
, wird der Titel aus der Symbolleiste entfernt.Eine andere Möglichkeit besteht darin, das
app:actionViewClass
Attribut in Ihrem Menü festzulegen:In Ihrem Code können Sie auf diese Schaltfläche zugreifen, nachdem das Menü aufgeblasen wurde:
quelle
Ich habe Text in der Symbolleiste hinzugefügt:
menu_skip.xml
MainActivity.java
quelle
Sie werden in der Symbolleiste / Aktionsleiste als Menüelemente oder Aktionsschaltflächen bezeichnet. Hier haben Sie ein Google-Tutorial, wie es funktioniert und wie Sie es hinzufügen können: https://developer.android.com/training/basics/actionbar/adding-buttons.html
quelle
Sie können tatsächlich alles in eine Symbolleiste einfügen. Siehe den folgenden Code.
Zwischen dem obigen Symbolleisten-Tag können Sie fast alles einfügen. Dies ist der Vorteil der Verwendung einer Symbolleiste.
Quelle: Beispiel für die Android-Symbolleiste
quelle
Sie können
actionLayout
aus der Support-Bibliothek verwenden.menu.xml
button_layout.xml
Activity.java
quelle
Ich war in der Lage , dass durch Umhüllung zu erreichen ,
Button
mitConstraintLayout
:Sie können eine zeichnbare Ressource erstellen
button_publish_rounded
, die Eigenschaften der Schaltfläche definieren und diese Datei der Eigenschaft der Schaltfläche zuweisenandroid:background
:quelle