gpt4 book ai didi

java - Android - LayoutInflater - 无法使 TextView 保持在另一个 TextView 下方

转载 作者:行者123 更新时间:2023-11-30 05:12:30 26 4
gpt4 key购买 nike

我正在使用 LayoutInflater 使用 GridAdapter 填充 GridView ,但是当我尝试将 textView 放置在我正在膨胀的布局中的另一个 textView 下方时,它最终位于我的 textView 上方而不是下方。当我将其更改为 layout_above 时,它​​甚至没有出现在屏幕上。我膨胀的布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:id="@+id/menuBookModel">

<ImageView
android:id="@+id/bookImage"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_margin="5dp"/>


<TextView
android:id="@+id/bookName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Test Text"
android:textSize="20sp"
android:textColor="@color/colorPrimaryDark"
android:layout_centerInParent="true"/>

<TextView
android:id="@+id/personalTag"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/bookName"
android:text="(Personal)"
android:layout_centerHorizontal="true"
android:textColor="@color/colorPrimaryDark"
android:textSize="15sp" />


</RelativeLayout>

我正在膨胀的 java 代码:

@Override
public View getView(int i, View view, ViewGroup viewGroup) {

LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

if(view == null){
view = inflater.inflate(R.layout.menu_book_model, null);
}

TextView bookName = view.findViewById(R.id.bookName);
TextView personalTag = view.findViewById(R.id.personalTag);
ImageView bookImage = view.findViewById(R.id.bookImage);

bookImage.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String s = String.valueOf(view.getTag());
aListener.chooseBook(s);
}
});


int id = context.getResources().getIdentifier(books[i], "string", context.getPackageName());
//if id == 0 the book is custom, and therefore it has the custom name
if(id == 0){
bookName.setText(books[i]);
} else {
bookName.setText(context.getString(id));
personalTag.setVisibility(View.GONE);
}


bookImage.setBackgroundColor(Color.rgb(random.nextInt(255),random.nextInt(255),random.nextInt(255)));

bookImage.setTag(books[i]);
return view;
}

它在预览中的样子: Preview

但实际上它是这样的: In practice

最佳答案

还需要处理personalTagid为0时的可见性,因为在 View 被回收时可能不可见:

if(id == 0){
bookName.setText(books[i]);
personalTag.setVisibility(View.VISIBLE);
} else {
bookName.setText(context.getString(id));
personalTag.setVisibility(View.GONE);
}

同时避免将根 RelativeLayout 设置为 match_parent 作为高度,它们通常 break AdapterViews,尝试 wrap_content 或任何硬值,或调整您的布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="100dp"
android:id="@+id/menuBookModel">

<ImageView
android:id="@+id/bookImage"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_margin="5dp"/>

<TextView
android:id="@+id/bookName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Test Text"
android:layout_centerInParent="true"
android:textSize="20sp"
android:textColor="@color/colorPrimaryDark"/>

<TextView
android:id="@+id/personalTag"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/bookName"
android:layout_centerHorizontal="true"
android:text="(Personal)"
android:textColor="@color/colorPrimaryDark"
android:textSize="15sp" />
</RelativeLayout>

关于java - Android - LayoutInflater - 无法使 TextView 保持在另一个 TextView 下方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53488592/

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