在我的代码中,我在图片下方添加了图片和文字。我有一个带有相对布局的 XML,它包含一个 ImageView 和一个 TextView。我动态地扩展了这个 xml 布局并将其添加到根 XML 中的 LinearLayout 中。我面临的问题是,如果我添加更多屏幕可以容纳(宽度)的图片,最后一张图片会变小。我希望能够拥有相同的结构并添加一个新行,例如我希望每行最多有 4 张图片,我该如何实现?
下面是我的根 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="wrap_content">
<TextView
android:id="@+id/text"
android:text="Friends who likes this:"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_centerHorizontal="true"/>
<LinearLayout
android:id="@+id/wrapper"
android:layout_below="@+id/text"
android:layout_marginTop="5dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:orientation="horizontal"/>
</RelativeLayout>
这是我的 xml 布局,其中有 imageview 和 textview:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/root"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/image"
android:layout_width="35dip"
android:layout_height="35dip"
android:layout_marginLeft="3dip"
android:src="@drawable/default_profile_picture"/>
<TextView
android:id="@+id/username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/image"
android:layout_marginTop="2dip"
android:layout_marginLeft="3dip"
android:textSize="9sp"
android:text="Damian M."/>
</RelativeLayout>
和Java代码膨胀这个:
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
inflater.inflate(R.layout.likes_view, this, true);
LinearLayout wrapper = (LinearLayout) findViewById(R.id.wrapper);
TextView text = (TextView) findViewById(R.id.text);
text.setTypeface(tf);
if(users.isEmpty()){
text.setVisibility(View.INVISIBLE);
}
RelativeLayout friendsView;
ImageView image;
TextView username;
for(User user : users){
friendsView = (RelativeLayout) View.inflate(ctx, R.layout.likes_view_friends, null);
image = (ImageView) friendsView.findViewById(R.id.image);
if(user.getImage() != null){
image.setImageBitmap(user.getImage());
}
username = (TextView) friendsView.findViewById(R.id.username);
username.setTypeface(tf);
String firstLetterLastName = user.getLastName().substring(0,1);
StringBuilder dotLastName = new StringBuilder(firstLetterLastName).append(".");
username.setText(user.getFirstName() + " " + dotLastName.toString());
wrapper.addView(friendsView);
}