我的活动中有一个简单的fab图标,它在android 7.0中工作正常,但是当我在android 4.4上运行我的应用程序时,我无法看到晶圆厂,我尝试更改晶圆厂的属性,但没有任何效果。
这是我的xml代码
<android.support.design.widget.CoordinatorLayout android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:layout_gravity="bottom|end"
android:id="@+id/fab1"
app:fabSize="mini"/>
<FrameLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/container"
xmlns:android="http://schemas.android.com/apk/res/android">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/srl"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<user.app.CustomWebView
android:id="@+id/web1"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.v4.widget.SwipeRefreshLayout>
</FrameLayout>
</android.support.design.widget.CoordinatorLayout>
这是我的活动。
public class TestActivity extends AppCompatActivity {
FloatingActionButton fab1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test);
fab1 = (FloatingActionButton) findViewById(R.id.fab1);
fab1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(TestActivity.this, "you just clicked the fab", Toast.LENGTH_SHORT).show();
}
});
}
}
答案 0 :(得分:1)
您的工作室正被您的framelayout隐藏。将它下面的工厂放在XML中,使其分层在顶部而不是在它下面。
由于材质布局提升效果,它在android 7中可见