在我的代码中,我在图片下面添加了一张图片和文字。我有一个带有RelativeLayout的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);
}