ActionBar

K

Kustaf

Neues Mitglied
0
Ich möchte bei meiner App nachträglich eine ActionBar hinzufügen, bekomme es aber einfach nicht hin. Ich hoffe mal das jemand eine Möglichkeit kennt.


Meine Activity:

package com.example.navdrawer;

import android.app.ActionBar;
import android.content.res.Configuration;
import android.os.Bundle;
import android.support.v4.app.ActionBarDrawerToggle;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;

public class MainActivity extends ActionBarActivity {

public DrawerLayout drawerlayout;
public ActionBarDrawerToggle drawertoggle;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

ActionBar actionBar = getActionBar();
actionBar.show();

drawerlayout = (DrawerLayout) findViewById(R.id.ganzesLayout);
drawertoggle = new ActionBarDrawerToggle(MainActivity.this,
drawerlayout, R.drawable.ic_drawer, R.string.open,
R.string.close);
drawerlayout.setDrawerListener(drawertoggle);

getActionBar().setHomeButtonEnabled(true);
getActionBar().setDisplayHomeAsUpEnabled(true);

}

@Override
public void onConfigurationChanged(Configuration newConfig) {

super.onConfigurationChanged(newConfig);

drawertoggle.onConfigurationChanged(newConfig);
}

@Override
protected void onPostCreate(Bundle savedInstanceState) {

super.onPostCreate(savedInstanceState);

drawertoggle.syncState();
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.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();
if (id == R.id.action_settings) {
return true;
}

return super.onOptionsItemSelected(item);
}
}



Mein Layout:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/ganzesLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
tools:context="com.example.navdrawer.MainActivity" >

<RelativeLayout
android:id="@+id/HauptLayout"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hauptlayout" />

</RelativeLayout>



<RelativeLayout
android:id="@+id/DrawerLayout"
android:layout_width="220dp"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:layout_gravity="start"
>

<TextView
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Drawer" />

</RelativeLayout>


</android.support.v4.widget.DrawerLayout>


Manifestdatei:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.navdrawer"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="21" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

 
So bekomm ich zwar eine ActionBar angezeigt, jedoch ist diese nicht so gut wie die normale ActionBar. Gibt es auch eien Weg die normale ActionBar rein zun implementieren, oder muss ich die API hochsetzen ?
 
Zuletzt bearbeitet:

Ähnliche Themen

5
Antworten
0
Aufrufe
746
539901
5
SM-T110 UND GT-I9300
Antworten
2
Aufrufe
699
SM-T110 UND GT-I9300
SM-T110 UND GT-I9300
H
Antworten
3
Aufrufe
1.021
haner
H
Zurück
Oben Unten