简体   繁体   English

Android-LayoutInflater-无法使textview停留在另一个textview之下

[英]Android - LayoutInflater - Cant make textview stay below another textview

I am using a LayoutInflater to fill out a grid view using a GridAdapter, but when i try to place a textView below another textView within the layout i am inflating, it ends up being above my textView instead of below. 我正在使用LayoutInflater使用GridAdapter填充网格视图,但是当我尝试将textView放置在布局中的另一个textView下方时,我将其充气,它最终位于我的textView上方而不是下方。 When i change it to layout_above instead, it doesnt even appear on the screen. 当我改为将其更改为layout_above时,它甚至没有出现在屏幕上。 Layout that i inflate: 我膨胀的布局:

<?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>

My java code where i am inflating: 我膨胀的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;
}

How it looks in the preview: Preview 预览中的外观: 预览

But this is how it look in practice: In practice 但是,这是怎么看的做法: 在实践中

You also need to handle personalTag visibility when the id is 0, because it may not be visible when the view is being recycled: 您还需要在id为0时处理personalTag可见性,因为在回收视图时它可能不可见:

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

Also avoid setting your root RelativeLayout with match_parent as height, they usually break in AdapterViews , try wrap_content or any hard values, or adjust your layout: 此外,还要避免设置你的根RelativeLayoutmatch_parent高度,他们通常在突破 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>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM