android extends Fragment怎么修改字体
publicclassFirstLoginFragmentextendsFragmentimplementsOnItemClickListener,OnClickList...
public class FirstLoginFragment extends Fragment implements OnItemClickListener, OnClickListener{
private View view;
private static TextView txt_wecome;
private void createView(LayoutInflater inflater,ViewGroup container){
view = (View) inflater.inflate(R.layout.activity_login2, null);
initUI();
}
private void initUI() {
txt_wecome = (TextView) view.findViewById(R.id.text_wecome_two);
Typeface face = Typeface.createFromAsset(getAssets(), "fonts/STXINGKA.TTF");
txt_wecome.setTypeface(face);
}
}
Typeface face = Typeface.createFromAsset(getAssets(), "fonts/STXINGKA.TTF");在extends Fragment
中reateFromAsset(getAssets() 这部分会报错,该如何修改?extends Fragment不能动 展开
private View view;
private static TextView txt_wecome;
private void createView(LayoutInflater inflater,ViewGroup container){
view = (View) inflater.inflate(R.layout.activity_login2, null);
initUI();
}
private void initUI() {
txt_wecome = (TextView) view.findViewById(R.id.text_wecome_two);
Typeface face = Typeface.createFromAsset(getAssets(), "fonts/STXINGKA.TTF");
txt_wecome.setTypeface(face);
}
}
Typeface face = Typeface.createFromAsset(getAssets(), "fonts/STXINGKA.TTF");在extends Fragment
中reateFromAsset(getAssets() 这部分会报错,该如何修改?extends Fragment不能动 展开
2015-12-14 · 知道合伙人软件行家
关注
展开全部
1.Fragment是android3.0引入的新控件,果应用使用在3.0以下、1.6及以上的版本,需要引入v4包。
2.Fragment支持在不同的Activity中使用并且可以处理自己的输入事件以及生命周期方法等。
3.Fr期方法依赖于Activity的生命周期,例如一个Activity的onPause()的生命周期方法被调用的时候这个Activity中的所有的Fragment的onPause()方法也将被调用。
4.FragmentManager提供了对Activity运行时的Fragment的添加、删除、替换的操作。在Activity运行期间可以添加Fragment而不是在XML布局文件中进行定义。如果打算在Activity中改变Fragment的生命过程。如果要执行添加、删除、修改的操作,必须通过FragmentManager的对象获得一个FragmentTransaction对象,通过它的API来执行这些操作。
5.两个单独的Fragment之间是不应该进行通信的。应该使用他们所存在的Activity作为沟通的纽带。
2.Fragment支持在不同的Activity中使用并且可以处理自己的输入事件以及生命周期方法等。
3.Fr期方法依赖于Activity的生命周期,例如一个Activity的onPause()的生命周期方法被调用的时候这个Activity中的所有的Fragment的onPause()方法也将被调用。
4.FragmentManager提供了对Activity运行时的Fragment的添加、删除、替换的操作。在Activity运行期间可以添加Fragment而不是在XML布局文件中进行定义。如果打算在Activity中改变Fragment的生命过程。如果要执行添加、删除、修改的操作,必须通过FragmentManager的对象获得一个FragmentTransaction对象,通过它的API来执行这些操作。
5.两个单独的Fragment之间是不应该进行通信的。应该使用他们所存在的Activity作为沟通的纽带。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询