-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrialActivity.java
More file actions
30 lines (26 loc) · 840 Bytes
/
TrialActivity.java
File metadata and controls
30 lines (26 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.ikai.unit.activities;
/**
*
* @Description: This Activity will show a custom {@link android.widget.ListView}
* in listView the items will be arranged in view as shown in layout
* of trial_bag.
* you may have to implement additional classes and an adapter
* {@link com.ikai.unit.adapters.TrialAdapter} to adapt items in a custom
* recyclerView.
* @Author:
*
* @StartingDate:
* @EndingDate:
*
* @Copyright UNiT (An IKAI company product)
*/
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import com.ikai.unit.R;
public class TrialActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_trial);
}
}