我正在使用的LinearLayoutOutlined
班级来自this answer,只有少量颜色的小编辑。
这就是我目前的活动。中心有一个水平滚动视图,我想通过将它们放在layout_holder
中来填充项目。这是页面的xml布局:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:configChanges="keyboardHidden|orientation|screenSize"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ControlPanel"
android:orientation="vertical"
android:id="@+id/main">
<HorizontalScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_gravity="center"
android:fillViewport="true">
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/layout_holder">
</LinearLayout>
</HorizontalScrollView>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom">
<Button
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="@string/connect_button_title"
android:id="@+id/button_button"
android:layout_gravity="start|bottom"
android:layout_width="0dp"
android:onClick="connectServer"/>
<EditText
android:layout_weight="1"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:layout_gravity="end|bottom"
android:text="@string/default_ip"
android:layout_width="0dp"/>
</LinearLayout>
</LinearLayout>
波纹管图像是我希望block
布局膨胀到layout_holder的方式:
这是它的模型
<LinearLayoutOutlined xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/block">
<ImageView
android:layout_marginTop="15dp"
android:layout_height="50dp"
android:layout_width="50dp"
android:layout_gravity="top|center"/>
<LinearLayoutOutlined
android:orientation="vertical"
android:layout_width="80dp"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal|fill_vertical"/>
</LinearLayoutOutlined>
但是在尝试动态添加block
布局时;我得到了不同的结果。这就是我试图夸大布局的方式:
LayoutInflater layoutInfralte = (LayoutInflater) getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LinearLayout linearLayout = (LinearLayout) findViewById(R.id.layout_holder);
View block = layoutInfralte.inflate(R.layout.block, null);
linearLayout.addView(block);
当它被块膨胀时,它就是这样的:
LinearLayoutOutlined
布局中嵌套最多的block
与我在模型中定义的布局不匹配。当它应该是从屏幕顶部到“连接”按钮顶部的距离时,它的高度似乎为零。知道我在这里做错了吗?
编辑获取更好的屏幕截图以更好地解释问题。
答案 0 :(得分:1)
在测量LinearLayout
的高度后尝试充气并添加视图。下面我报告了您的Activity的onCreate
方法的实现。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_holder);
final LayoutInflater li = LayoutInflater.from(this);
final LinearLayout layout = (LinearLayout) findViewById(R.id.layout_holder);
layout.post(new Runnable() {
@Override
public void run() {
int height = layout.getMeasuredHeight();
LinearLayoutOutlined view = (LinearLayoutOutlined) li
.inflate(R.layout.block, null);
view.setMinimumHeight(height);
layout.addView(view);
}
});
}
这就是它在我的设备上的外观:
希望这可以提供帮助。
答案 1 :(得分:0)
您正在为layout_holder添加布局,该布局设置为orientation = horizontal。所以当然每个块都以横向方式与前一个块相邻。将layout_holder设置为&#34; vertical&#34;将每个区块置于前一个区块之下。
布局的layout_width决定了视图(组)的宽度,因此将其设置为&#34; wrap_content&#34;将允许它尽可能宽。只需确保您的块设置为minimumWidth,该宽度尽可能宽(或者设置内容以便包装内容尽可能宽)。