中添加地址佈局 - 小activity.xml你好我與本教程https://stackoverflow.com/q/7665194/840861使res/layout-small/my_layout.xml和我想在主要活動中添加此xml文件,但不能解決它像這樣教程https://android-developers.googleblog.com/2011/07/new-tools-for-managing-screen-sizes.html如何在類
我想這樣的代碼:
public class MyActivity extends Activity {
@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate();
Configuration config = getResources().getConfiguration();
if (config.smallestScreenWidthDp >= 600) {
setContentView(R.layout.main_activity_tablet);
} else {
setContentView(R.layout.main_activity);
}
}
}
我的代碼是:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
setContentView(R.layout.activity_main);
}
,但不能這個地址的xml:
setContentView(R.layout-small.activity_main);
和我創造佳績的文件夾佈局小和過去的xml文件activity_main但不能添加地址
對不起我不是良好的英語語言