限制线性布局内按钮的大小,以防止推离屏幕
Constrain the size of buttons within a linear layout to prevent pushing off screen
我有一个垂直线性布局,它是 scrollView
的一部分。在垂直线性布局中,我添加了水平线性布局,每个布局有 2 个按钮,一个较大的带有名称的按钮和一个小的删除按钮。当名称变得太大时,删除按钮会被压扁或基本上被删除。我想通过使删除按钮始终保持相同大小并将文本按钮限制为布局中剩余的 space 来避免这种情况。
这是我的存档文件,我想防止删除按钮变小。这可以通过使文本位于多行或更改字体大小来实现,但我的 none 尝试到目前为止已经奏效。我的程序的所有功能都是完美的,但大小使其难以在多个设备上使用。
这是 linearLayout
和 scrollView
的 XML
:
<ScrollView
android:id="@+id/loadScrollView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="16dp"
android:layout_marginTop="32dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="32dp"
app:layout_constraintBottom_toTopOf="@+id/returnToMainButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/loadGameText"
app:layout_constraintVertical_bias="1.0">
<LinearLayout
android:id="@+id/loadLinearLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:layout_marginTop="2dp"
android:orientation="vertical">
</LinearLayout>
</ScrollView>
下面是添加按钮的代码:
public void addButtons() {
LinearLayout linearLayout = findViewById(R.id.loadLinearLayout);
int i = 0;
for(File file : files) {
LinearLayout innerLayout = new LinearLayout(this);
innerLayout.setOrientation(LinearLayout.HORIZONTAL);
Button newButton = new Button(this);
String filename = file.getName();
newButton.setId(i);
newButton.setText(filename);
newButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
loadGame(view);
}
});
innerLayout.addView(newButton);
ImageButton deleteButton = new ImageButton(this);
deleteButton.setImageResource(android.R.drawable.ic_menu_delete);
deleteButton.setId(500+i);
deleteButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
deleteSave(view);
}
});
innerLayout.addView(deleteButton);
linearLayout.addView(innerLayout);
i++;
}
}
为了避免左键在删除按钮上贪心,避免删除按钮被挤压,你需要做一些事情:
- 为 Button 添加大于 0 的布局权重。
- 将水平
LinearLayout
的宽度设置为WRAP_CONTENT
LinearLayout innerLayout = new LinearLayout(this);
innerLayout.setOrientation(LinearLayout.HORIZONTAL);
Button newButton = new Button(this);
String filename = file.getName();
newButton.setId(i);
newButton.setText(filename);
newButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
loadGame(view);
}
});
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT, 1f); // layout_weight of 1
innerLayout.addView(newButton, params);
ImageButton deleteButton = new ImageButton(this);
deleteButton.setImageResource(android.R.drawable.ic_menu_delete);
deleteButton.setId(500+i);
deleteButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
deleteSave(view);
}
});
innerLayout.addView(deleteButton);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT, // WRAP_CONTENT the widtj
LinearLayout.LayoutParams.WRAP_CONTENT);
linearLayout.addView(innerLayout, layoutParams);
i++;
正在测试:
我有一个垂直线性布局,它是 scrollView
的一部分。在垂直线性布局中,我添加了水平线性布局,每个布局有 2 个按钮,一个较大的带有名称的按钮和一个小的删除按钮。当名称变得太大时,删除按钮会被压扁或基本上被删除。我想通过使删除按钮始终保持相同大小并将文本按钮限制为布局中剩余的 space 来避免这种情况。
这是我的存档文件,我想防止删除按钮变小。这可以通过使文本位于多行或更改字体大小来实现,但我的 none 尝试到目前为止已经奏效。我的程序的所有功能都是完美的,但大小使其难以在多个设备上使用。
这是 linearLayout
和 scrollView
的 XML
:
<ScrollView
android:id="@+id/loadScrollView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="16dp"
android:layout_marginTop="32dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="32dp"
app:layout_constraintBottom_toTopOf="@+id/returnToMainButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/loadGameText"
app:layout_constraintVertical_bias="1.0">
<LinearLayout
android:id="@+id/loadLinearLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:layout_marginTop="2dp"
android:orientation="vertical">
</LinearLayout>
</ScrollView>
下面是添加按钮的代码:
public void addButtons() {
LinearLayout linearLayout = findViewById(R.id.loadLinearLayout);
int i = 0;
for(File file : files) {
LinearLayout innerLayout = new LinearLayout(this);
innerLayout.setOrientation(LinearLayout.HORIZONTAL);
Button newButton = new Button(this);
String filename = file.getName();
newButton.setId(i);
newButton.setText(filename);
newButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
loadGame(view);
}
});
innerLayout.addView(newButton);
ImageButton deleteButton = new ImageButton(this);
deleteButton.setImageResource(android.R.drawable.ic_menu_delete);
deleteButton.setId(500+i);
deleteButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
deleteSave(view);
}
});
innerLayout.addView(deleteButton);
linearLayout.addView(innerLayout);
i++;
}
}
为了避免左键在删除按钮上贪心,避免删除按钮被挤压,你需要做一些事情:
- 为 Button 添加大于 0 的布局权重。
- 将水平
LinearLayout
的宽度设置为WRAP_CONTENT
LinearLayout innerLayout = new LinearLayout(this);
innerLayout.setOrientation(LinearLayout.HORIZONTAL);
Button newButton = new Button(this);
String filename = file.getName();
newButton.setId(i);
newButton.setText(filename);
newButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
loadGame(view);
}
});
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT, 1f); // layout_weight of 1
innerLayout.addView(newButton, params);
ImageButton deleteButton = new ImageButton(this);
deleteButton.setImageResource(android.R.drawable.ic_menu_delete);
deleteButton.setId(500+i);
deleteButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
deleteSave(view);
}
});
innerLayout.addView(deleteButton);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT, // WRAP_CONTENT the widtj
LinearLayout.LayoutParams.WRAP_CONTENT);
linearLayout.addView(innerLayout, layoutParams);
i++;
正在测试: