我有一个floatActionButton并希望在各个活动中重复使用它,所以我不需要在每个活动上调用onclick方法,
目前我有这样的事情:
辅助
public class FloatButtonToolbar extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Log.d("ENTERED","GOTIT");
Intent i = new Intent(FloatButtonToolbar.this,CameraCapture.class);
startActivity(i);
}
});
}
}
主xml(我想重用的那个)
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.afcosta.inesctec.pt.android.Helpers.FloatButtonToolbar">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>
现在我的活动xml上有这个:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:fitsSystemWindows="true"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.afcosta.inesctec.pt.android.FamilyLibrary"
android:paddingTop="6dp">
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_menu_camera"
app:backgroundTint="#f1c40f"
tools:layout_constraintRight_creator="1"
tools:layout_constraintBottom_creator="1"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginEnd="37dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginBottom="33dp" />
事情就在上面的第一个例子中,我有onclick监听器,但它没有工作,它没有进入onclick,日志永远不会显示:S
任何消化?
答案 0 :(得分:1)
您无法跨活动重复使用相同的视图。视图属于某个活动。您必须在每个活动中设置onClick。你可以做的最好的事情是使一个自定义子函数FloatingActionButton在其构造函数中硬编码onClick行为。
答案 1 :(得分:1)
视图不能跨活动使用,但片段可以。因此,在android中,如果您需要跨活动访问某些视图或视图组,那么您可以创建这些视图组的片段,然后跨活动使用它们。因此,在这种情况下,您可以创建一个包含fab的片段,然后在片段的每个活动布局中保留右下角,并在创建活动时将片段放在那里。
有关片段的更多信息,您可以使用以下参考: -
https://developer.android.com/guide/components/fragments.html
https://developer.android.com/training/basics/fragments/index.html