我决定暂时不使用片段,尽管Android希望开发人员现在使用它。 但是我一开始并没有发现它有用。不幸的是我的IDE准备好使用片段的一切,所以我的问题基本上是,如何摆脱一切,片段所必需的?有没有办法创建没有片段的项目?多数民众赞成我所做的:
package com.pthuermer.juraquiz;
import java.io.IOException;
// import com.pthuermer.juraquiz.QuizActivity.PlaceholderFragment; // only necessary for Fragments
import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.Button;
import android.os.Build;
public class AppLaunch extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_app_launch);
/* FRAGMENTS
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();
}
END FRAGMENTS */
// code goes here...
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.app_launch, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
/**
* A placeholder fragment containing a simple view.
* Useredit: not going to use fragments for now.
public static class PlaceholderFragment extends Fragment {
public PlaceholderFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_app_launch,
container, false);
return rootView;
}
}
*/
}
答案 0 :(得分:3)
我认为Android社区中的很多人会同意片段不易处理,甚至会产生新问题,其中一些甚至没有合适的解决方案。
尽管如此,尝试从应用程序中删除所有片段并非易事,可能需要良好的Android编程技能。您必须将片段转换为视图或活动,这样做并不容易,尤其是对于包含多个片段的活动。
到目前为止,最好的选择是使用Square的mortar,但是这个替代方案还没有完全准备好和成熟,并且使用它需要TMHO,高级Android技能。
所以,如果我是Android世界中相对较新的程序员,我会保留片段,习惯它们,了解它们如何用于创建可重用的组件,并使应用程序可以在手机和平板电脑上运行。
过了一段时间,当你掌握它们时,你会发现它们的缺点,并且能够寻找替代方案。
答案 1 :(得分:1)
我试着从Square研究砂浆三次,但我仍然没有想到如何使用它。所以我继续使用Kotlin + Anko,将所有片段切换为视图,我感到非常高兴 - 代码库小三倍,没有脏片段黑客,没有NPE视图因为未知原因而未被创建,等。按如下方式实现视图:
class QuestionnaireView(ctx: Context, questions: List<Question>): _LinearLayout {
init {
orientation = LinearLayout.VERTICAL
for (question in questions) {
verticalLayout {
textView {
text = question.title
}.lparams(matchParent, wrapContent)
... etc - generate answer fields as necessary
}.lparams(matchParent, wrapContent)
}
}
}
优点:
if(screenWidthDp>=720) { detailView {} }
添加到init块。缺点: