我是关于android编程的新手。我想在scrollview中实现一个简单的元素并排布局。我们的想法是每次使用图像和文本处理单个元素,让布局根据屏幕分辨率选择何时适合回车。我尝试了各种类型的布局,但似乎没有人适合我的目的。特别是相对布局元素是重叠的,而我需要的是空间附加。在尝试使用workaroud之前(例如在线性布局中连续添加更多元素),我想知道是否存在更自然的解决方案。
layout http://www.youth-stories.com/layout.jpg
我创建了一个示例活动来尝试解决方案:
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final RelativeLayout container = (RelativeLayout)findViewById(R.id.container);
for(int i=0; i < 100; i++)
{
final Button button = new Button(this);
button.setText("sda"+i);
button.setId(i);
container.addView(button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
container.removeView(button);
}
});
}
}
}
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dp"
android:id="@+id/outer"
android:tileMode="disabled" android:gravity="top">
<ImageView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/background"
android:scaleType="centerCrop"/>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/scrollView" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/container"></RelativeLayout>
</ScrollView>
</RelativeLayout>
答案 0 :(得分:0)
对于显示的图表,您可以选择网格布局,您可以自定义网格布局以确定单元格之间的间距。 如果它仍然不适合你的需要,我的建议是线性布局与布局权重,但嵌套权重是一个性能开销。
http://developer.android.com/reference/android/widget/GridLayout.html
Why are nested weights bad for performance? Alternatives?
希望这有帮助!!
答案 1 :(得分:0)
从上面给出的图中,您可以使用GridView绘制给定的UI。您可以指定项目之间的间距以及每行包含的列数。 供参考检查开发人员文档。