将布局插入 ScrollView 后拉伸
Layout stretched after inserting it into a ScrollView
我有一个带有 ScrollView 的布局,我想在其中以编程方式插入另一个布局。所以这个
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="96dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#56565A"
android:orientation="vertical">
插入这个
<HorizontalScrollView
android:id="@+id/live_scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/live_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" />
</HorizontalScrollView>
然后我就这样插入了
for (int i = 0; i < exercise.targetSets; i++) {
LayoutInflater factory = LayoutInflater.from(getContext());
View myView = factory.inflate(R.layout.live_set_item, null);
TextView setName = (TextView) myView.findViewById(R.id.current_set);
setName.setText(String.format("SET %d", i+1));
scrollView.addView(myView);
}
但是当我 运行 应用程序时,插入的布局是它应该的两倍宽。
How it should look (How it looks in the Android Studio Editor)
Vs how it looks when inserted into the ScrollView
到目前为止,我已经尝试使用无效的 ConstraintLayout。或者使用不同的布局权重。
我希望你能帮助我。
您可以尝试使用布局参数为高度和宽度设置视图自定义参数
作为
val linearLayout = LinearLayout(requireActivity())
val lp: LinearLayout.LayoutParams = (ParentView)findViewById(R.id.parent_view);
val left_margin: Int = 3 //e.g
val top_margin = 0
val right_margin: Int = 3 //e.g
val bottom_margin = 0
lp.setMargins(left_margin, top_margin, right_margin, bottom_margin)
val size = Point()
val w = requireActivity().windowManager
w.defaultDisplay.getSize(size)
lp.width = size.x - 40
lp.height = size.y
linearLayout.layoutParams = lp
或者为了获得更好的结果,您可以使用 recycler view 以更好的处理方式实现相同的结果,并且只创建适配器的单个实例,这将完全取决于您传递给的列表回收站视图。处理和调试的代码也更少。
我有一个带有 ScrollView 的布局,我想在其中以编程方式插入另一个布局。所以这个
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="96dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#56565A"
android:orientation="vertical">
插入这个
<HorizontalScrollView
android:id="@+id/live_scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/live_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" />
</HorizontalScrollView>
然后我就这样插入了
for (int i = 0; i < exercise.targetSets; i++) {
LayoutInflater factory = LayoutInflater.from(getContext());
View myView = factory.inflate(R.layout.live_set_item, null);
TextView setName = (TextView) myView.findViewById(R.id.current_set);
setName.setText(String.format("SET %d", i+1));
scrollView.addView(myView);
}
但是当我 运行 应用程序时,插入的布局是它应该的两倍宽。
How it should look (How it looks in the Android Studio Editor)
Vs how it looks when inserted into the ScrollView
到目前为止,我已经尝试使用无效的 ConstraintLayout。或者使用不同的布局权重。
我希望你能帮助我。
您可以尝试使用布局参数为高度和宽度设置视图自定义参数
作为
val linearLayout = LinearLayout(requireActivity())
val lp: LinearLayout.LayoutParams = (ParentView)findViewById(R.id.parent_view);
val left_margin: Int = 3 //e.g
val top_margin = 0
val right_margin: Int = 3 //e.g
val bottom_margin = 0
lp.setMargins(left_margin, top_margin, right_margin, bottom_margin)
val size = Point()
val w = requireActivity().windowManager
w.defaultDisplay.getSize(size)
lp.width = size.x - 40
lp.height = size.y
linearLayout.layoutParams = lp
或者为了获得更好的结果,您可以使用 recycler view 以更好的处理方式实现相同的结果,并且只创建适配器的单个实例,这将完全取决于您传递给的列表回收站视图。处理和调试的代码也更少。