OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:recyclerview
(Results
1 - 9
of
9
) sorted by null
/developers/samples/android/ui/views/RecyclerView/Application/src/androidTest/java/com/example/android/recyclerview/test/
RecyclerViewSampleTests.java
17
package com.example.android.
recyclerview
.test;
19
import com.example.android.
recyclerview
.MainActivity;
20
import com.example.android.
recyclerview
.R;
21
import com.example.android.
recyclerview
.RecyclerViewFragment;
24
import android.support.v7.widget.
RecyclerView
;
28
* Tests for
RecyclerView
sample.
63
RecyclerView
recyclerView
=
64
(
RecyclerView
) mTestFragment.getView().findViewById(R.id.
recyclerView
);
[
all
...]
/developers/build/prebuilts/gradle/RecyclerView/Application/src/main/java/com/example/android/recyclerview/
CustomAdapter.java
17
package com.example.android.
recyclerview
;
21
import android.support.v7.widget.
RecyclerView
;
28
* Provide views to
RecyclerView
with data from mDataSet.
30
public class CustomAdapter extends
RecyclerView
.Adapter<CustomAdapter.ViewHolder> {
39
public static class ViewHolder extends
RecyclerView
.ViewHolder {
63
* @param dataSet String[] containing the data to populate views to be used by
RecyclerView
.
MainActivity.java
17
package com.example.android.
recyclerview
;
RecyclerViewFragment.java
17
package com.example.android.
recyclerview
;
23
import android.support.v7.widget.
RecyclerView
;
30
* Demonstrates the use of {@link
RecyclerView
} with a {@link LinearLayoutManager} and a
50
protected
RecyclerView
mRecyclerView;
52
protected
RecyclerView
.LayoutManager mLayoutManager;
71
mRecyclerView = (
RecyclerView
) rootView.findViewById(R.id.
recyclerView
);
74
// to the way ListView would layout elements. The
RecyclerView
.LayoutManager defines how
88
// Set CustomAdapter as the adapter for
RecyclerView
.
112
* Set
RecyclerView
's LayoutManager to the one given
[
all
...]
/developers/samples/android/ui/views/RecyclerView/Application/src/main/java/com/example/android/recyclerview/
CustomAdapter.java
17
package com.example.android.
recyclerview
;
21
import android.support.v7.widget.
RecyclerView
;
28
* Provide views to
RecyclerView
with data from mDataSet.
30
public class CustomAdapter extends
RecyclerView
.Adapter<CustomAdapter.ViewHolder> {
39
public static class ViewHolder extends
RecyclerView
.ViewHolder {
63
* @param dataSet String[] containing the data to populate views to be used by
RecyclerView
.
RecyclerViewFragment.java
17
package com.example.android.
recyclerview
;
23
import android.support.v7.widget.
RecyclerView
;
30
* Demonstrates the use of {@link
RecyclerView
} with a {@link LinearLayoutManager} and a
50
protected
RecyclerView
mRecyclerView;
52
protected
RecyclerView
.LayoutManager mLayoutManager;
71
mRecyclerView = (
RecyclerView
) rootView.findViewById(R.id.
recyclerView
);
74
// to the way ListView would layout elements. The
RecyclerView
.LayoutManager defines how
88
// Set CustomAdapter as the adapter for
RecyclerView
.
112
* Set
RecyclerView
's LayoutManager to the one given
[
all
...]
/development/samples/browseable/RecyclerView/src/com.example.android.recyclerview/
CustomAdapter.java
17
package com.example.android.
recyclerview
;
21
import android.support.v7.widget.
RecyclerView
;
28
* Provide views to
RecyclerView
with data from mDataSet.
30
public class CustomAdapter extends
RecyclerView
.Adapter<CustomAdapter.ViewHolder> {
39
public static class ViewHolder extends
RecyclerView
.ViewHolder {
63
* @param dataSet String[] containing the data to populate views to be used by
RecyclerView
.
MainActivity.java
17
package com.example.android.
recyclerview
;
RecyclerViewFragment.java
17
package com.example.android.
recyclerview
;
23
import android.support.v7.widget.
RecyclerView
;
30
* Demonstrates the use of {@link
RecyclerView
} with a {@link LinearLayoutManager} and a
50
protected
RecyclerView
mRecyclerView;
52
protected
RecyclerView
.LayoutManager mLayoutManager;
71
mRecyclerView = (
RecyclerView
) rootView.findViewById(R.id.
recyclerView
);
74
// to the way ListView would layout elements. The
RecyclerView
.LayoutManager defines how
88
// Set CustomAdapter as the adapter for
RecyclerView
.
112
* Set
RecyclerView
's LayoutManager to the one given
[
all
...]
Completed in 86 milliseconds