2
我在我的活動中有一個簡單的晶圓廠圖標,它在Android 7.0中正常工作,但在Android 4.4上運行我的應用程序時我無法看到晶圓廠,晶圓廠的屬性,但沒有奏效。活動在Android 4.4 kitkat上不顯示晶圓廠圖標
這裏是我的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();
}
});
}
}