这是一个滚动视图,当从API收到响应时,其中包含从Java代码添加的所有内容。
问题在于我找不到在ScrollView
中显示此类信息的方法。我尝试使用ImageButton
,但我无法获取其中的内容然后我尝试使用Button
,但仍然无法达到预期的效果请有人建议我可以这样做。
private Button makeButton(String targetName, final String i, LinearLayout.LayoutParams buttonLayoutParams) {
Button in = new Button(this);
in.setBackground(getResources().getDrawable(R.drawable.rectangle14));
in.setText(targetName);
in.setWidth(360);
in.setHeight(72);
in.setLayoutParams(buttonLayoutParams);
in.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent myIntent = new Intent(HomeActivity.this,XSavingDetailsActivity.class);
myIntent.putExtra("i" ,i);
HomeActivity.this.startActivity(myIntent);
}
});
return in;
}
答案 0 :(得分:2)
您应该使用RecyclerView。每个,RecyclerView中的每个组件都是CardView。您还应该了解Material Design。
除了以上一些有用的链接: https://developer.android.com/guide/topics/ui/layout/cardview.html https://www.androidhive.info/2016/01/android-working-with-recycler-view/ https://medium.com/@nileshsingh/android-cardview-101-everything-you-should-know-5bbf1c873f5a
答案 1 :(得分:-1)
只需将顶级布局设为ScrollView:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchColumns="1">
<!-- everything else -->
</TableLayout>