I want to make button share at right corner So i used this. But my project has used extent ListActivity,so how to merge ActionBarActivity and ListActivity?
Change your ListActivity to ActionBarActivity and find ListView
e.g:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/list"
android:layout_height="match_parent"
android:layout_width="match_parent">
</ListView>
Now for your activity:
public class MyOldListActivity extends ActionBarActivity
{
private ListView listView;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
listView = (ListView) findViewById(R.id.list);
....
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With