Changes
Page history
Update erstellen
authored
Oct 16, 2018
by
Toni Beier
Show whitespace changes
Inline
Side-by-side
module/erstellen.md
View page @
7e503a88
...
...
@@ -82,7 +82,7 @@ public class LibraryFragment extends AbstractASiSTFragment {
public
View
onCreateView
(
final
LayoutInflater
inflater
,
final
ViewGroup
container
,
final
Bundle
savedInstanceState
)
{
// Load Layout from layout ressource
final
View
view
=
inflater
.
inflate
(
R
.
layout
.
library
,
container
,
false
);
final
View
view
=
inflater
.
inflate
(
R
.
layout
.
module_
library
_home
,
container
,
false
);
// Layout ressource should named like module_[package name]_[view name]
TextView
tvmyStuff
=
(
TextView
)
view
.
findViewById
(
R
.
id
.
libraryTextView
);
tvmyStuff
.
setText
(
"Hallo library."
);
...
...
...
...