2016-08-08 33 views
-1

Wie füge ich meine Aktionsleiste zur Ansicht (Canvas) -Klasse hinzu?Wie füge ich meiner Aktionsleiste meine Aktionsleiste hinzu?

public class MainActivity extends AppCompatActivity { 


@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 


    this.requestWindowFeature(Window.FEATURE_NO_TITLE); 
    this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); 


    //set paint color 

    setContentView(R.layout.activity_main); 
    //setContentView(new DrawView(this)); 


    Toolbar toolbar = (Toolbar) findViewById(R.id.my_toolbar); 
    setSupportActionBar(toolbar); 
    //DrawView.setPaint(255, 235, 191, 47); 
} 

Here is my project.

Hier ist mein Projekt und die Werkzeugleiste wird in activity_main.xml gespeichert.

Visuelle Darstellung von dem, was ich will: P linke Screenshot ist, wenn ich setContentView(R.layout.activity_main); verwenden, richtig ist //setContentView(new DrawView(this)); enter image description here

Danke Jungs! und wenn es ok ist könnt ihr euch incl. eine Erklärung auch? Ich bin neu in Android Programmierung :)

activity_main XML

<?xml version="1.0" encoding="utf-8"?> 
<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" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    tools:context="com.example.nikol.touchpaint.MainActivity"> 
<!-- <view 
     android:id="@+id/viewid" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" />--> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/my_toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     android:elevation="4dp" 
     android:theme="@style/ThemeOverlay.AppCompat.ActionBar" 
     android:popupTheme="@style/ThemeOverlay.AppCompat.Light"/> 

    <TextView 
     android:id="@+id/testText" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:layout_alignParentStart="true" 
     android:layout_marginBottom="151dp" 
     android:text="Hello World!" /> 

    <Button 
     android:id="@+id/button" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignTop="@+id/button2" 
     android:layout_toStartOf="@+id/button2" 
     android:text="New Button" /> 

    <Button 
     android:id="@+id/button2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:layout_alignParentEnd="true" 
     android:layout_marginBottom="29dp" 
     android:layout_marginEnd="30dp" 
     android:text="New Button" /> 

</RelativeLayout> 
+1

Warum können Sie nicht die Leinwand in einer Aktivität sehen Put mit Symbolleiste? –

+0

@ cricket_007 Meinst du das? http://puu.sh/qu73r/5df21ed733.png – Google0593

+0

Nicht genau ... Wie würden Sie die Toolbar dort bekommen? Du kannst DrawView in 'activity_main.xml' hinzufügen, du solltest es nicht aus dem Java-Code setzen müssen –

Antwort

0

Im Layout-Editor für die Ansicht mit der Symbolleiste und den Tasten, blättern Sie im Editor nach unten, wo Sie „Benutzerdefinierte Ansicht“ sehen .

Von dort können Sie mit der Eingabe beginnen, und Sie können Ihre benutzerdefinierte View-Klasse hinzufügen und hinzufügen, wo in der XML Sie wollen.

custom view

0

Ihre activity_main.xml sollte wie folgt aussehen:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/contentView" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <com.example.nikol.touchpaint.DrawView 
     android:id="@+id/drawView" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

</RelativeLayout> 

dann in Ihrer Tätigkeit stehen

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    DrawView drawView = findViewById(R.id.drawView); 
} 
Verwandte Themen