AndroidStudioTutorial_160218S004_创建Fragment

[文段由本人自学Android官方的Tutorial后自行整理]

[转载请注明出处]


Fragment可以看作是一个小Activity,他有自己的生命周期,单独接收用户输入,可以在Activity运行时添加、删除和修改。


要想使用Fragment,首先要extends Fragment类,然后重写他的生命线逻辑。

对于Fragment,必须使用onCreateView()方法来定义Layout。

每个Fragment实例i都有一个对应的父Fragment Activity。


Fragment在Activity的Layout中使用,在Layout对应的XML代码中,先要有一个FrameLayout作为Fragment container。


在Activity中,首先使用getSupportFragmentManager()来获取FragmentManager实例。

然后,调用他的beginTransaction()方法来获取transaction实例。

对于transaction实例,可以使用add,replace等方法来对Fragment进行添加、替换等操作。

在对Fragment操作完成后,要使用commit()方法来更新Layout中的FrameLayout内容。


在添加Fragment时:

-首先,要保证 findViewById(R.id.fragment_container) 不为空。

-然后,若savedInstanceState非空,直接返回:return;。

-若这个Activity由其他Activity发出的Intent开启的,则处理Intent:

--将Intent的附加信息添加到Fragment的参数中:fragment.setArgument(getIntent().getExtra());

-最后,发送fragment到FrameLayout中:

getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, fragment).commit();


替换Fragment的操作与添加类似,但稍简单一些,不需要太多的判定。



[文段学习内容来自 http://developer.android.com/training/basics/fragments/fragment-ui.html ]

[转载请注明出处]

在Java创建四个学生对象并存储,首先需要定义一个学生类,然后创建该类的实例,最后将这些实例存储在一个合适的数据结构。下面是具体的步骤和示例代码: 1. 定义学生类(Student): ```java public class Student { private String name; private int age; private String id; private double score; // 构造方法 public Student(String name, int age, String id, double score) { this.name = name; this.age = age; this.id = id; this.score = score; } // getter和setter方法 public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public String getId() { return id; } public void setId(String id) { this.id = id; } public double getScore() { return score; } public void setScore(double score) { this.score = score; } } ``` 2. 创建四个学生对象: ```java public class Main { public static void main(String[] args) { // 创建学生对象 Student student1 = new Student("张三", 20, "S001", 90.5); Student student2 = new Student("李四", 21, "S002", 85.0); Student student3 = new Student("王五", 19, "S003", 92.0); Student student4 = new Student("赵六", 22, "S004", 88.5); // 存储对象,这里使用一个ArrayList来存储 List<Student> students = new ArrayList<>(); students.add(student1); students.add(student2); students.add(student3); students.add(student4); // 现在students列表存储了四个学生对象 } } ``` 在这个例子,我们首先定义了一个`Student`类,包含了姓名、年龄、学号和成绩等属性,以及相应的构造方法、getter和setter方法。然后在`Main`类的`main`方法创建了四个`Student`对象,并将它们添加到`ArrayList<Student>`列表。这样,我们就成功地创建并存储了四个学生对象。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值