嗨,我正在开发一个应用程序,该应用程序在选项卡内有滑动选项卡,有按钮,例如 fragmenttab1 有 Algabra 按钮,当用户单击此按钮时,我想要它,它会将他们带到 AlgabraHome.class 我不知道该怎么做帮助将是惊人的!
fragmanttab1.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" >
<Button
android:id="@+id/algabra"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="56dp"
android:text="Algabra" />
<Button
android:id="@+id/geomtery"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/algabra"
android:layout_below="@+id/algabra"
android:layout_marginTop="75dp"
android:text="geomtery" />
</RelativeLayout>
FragmentTab1.java
package com.androidbegin.absviewpagertutorial;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.actionbarsherlock.app.SherlockFragment;
public class FragmentTab1 extends SherlockFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Get the view from fragmenttab1.xml
View view = inflater.inflate(R.layout.fragmenttab1, container, false);
return view;
}
@Override
public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
setUserVisibleHint(true);
}
}
如果您需要其他任何东西,请告诉我
我是 android 开发的新手,正在学习,所以请不要发表无用的评论 :)
谢谢