In my android project, I get a string
from my server and from that string
put the value inside a textview
.
XML:
<RelativeLayout
android:id="@+id/scorelayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical">
Java:
RelativeLayout relativeLayout = view.findViewById(R.id.scorelayout);
TextView Score = new TextView(context);
RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.WRAP_CONTENT,
RelativeLayout.LayoutParams.WRAP_CONTENT
);
relativeLayout.addView(Score, layoutParams);