gpt4 book ai didi

android - 如何布局按钮阵列以适应任何屏幕尺寸

转载 作者:太空狗 更新时间:2023-10-29 13:40:25 27 4
gpt4 key购买 nike

我为我的应用程序创建了一组按钮。现在我无法管理这些按钮阵列的布局。因此,每当我添加图像或更改按钮的宽度时,它都会超出设备的水平屏幕。那么有什么方法可以管理这些按钮阵列,使它们适合任何屏幕尺寸。这是我的代码:

XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<LinearLayout
android:id="@+id/liVLayout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</LinearLayout>

<LinearLayout
android:id="@+id/liVLayout1"
android:orientation="vertical"
android:layout_below="@+id/liVLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<TextView android:text="All Contacts"
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/black"
android:background="#808080">
</TextView>
</LinearLayout>
</RelativeLayout>

Java:

public class CalenderForm extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
createCalender();
}
public void createCalender()
{
RelativeLayout.LayoutParams p = new RelativeLayout.LayoutParams
(
RelativeLayout.LayoutParams.WRAP_CONTENT,
RelativeLayout.LayoutParams.WRAP_CONTENT
);
LinearLayout layoutVertical = (LinearLayout) findViewById(R.id.liVLayout);
LinearLayout rowLayout=null;
Button[][] buttons = new Button[6][7];
int count=43;
for (int i = 0; i<6; i++)
{
if(count%7==1)
{
rowLayout = new LinearLayout(this);
layoutVertical.addView(rowLayout,p);
count=count-7;
}
for(int j=0;j<7;j++)
{
buttons[i][j]=new Button(this);
buttons[i][j].setBackgroundResource(R.drawable.icon);
rowLayout.addView(buttons[i][j], p);
}
}
}

插入图片前的截图:

enter image description here

插入图片前的截图:

enter image description here

最佳答案

我知道这不能直接回答您的问题,但我只是想帮助您。如果您正在构建日历应用程序,那么创建大量按钮确实不是正确的方法:

  1. 由于皮肤等原因,您在不同的 ROM 上会遇到问题。
  2. 您将无法完全控制布局(同样是因为皮肤)
  3. 你会遇到间距问题
  4. 您将分配大量内存(大量 Button 对象等),这将导致您的应用运行缓慢。

我推荐的是实现您自己的自定义 View .我最近自己开发了一个日历应用程序,并尝试在这个月使用 GridView,但效果并不好(尽管看起来会这样),所以我最终创建了自己的 查看,结果非常完美。

我发现非常有用的是 Android 的默认开源 Calendar应用程序。您会在其中找到月 View 和日/周 View (带有小时刻度等)的源代码。

关于android - 如何布局按钮阵列以适应任何屏幕尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6503771/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com