简体   繁体   English

如何以编程方式将 layout.xml 添加到另一个 layout.xml

[英]How to add layout.xml to another layout.xml programmatically

I have Fragment that contain Linear layout with orientation "horizontal" (ItemViewContainer).我有包含具有方向“水平”(ItemViewContainer)的线性布局的片段。 I'm created another layout that container imageView and textView (ItemView).我创建了另一个包含 imageView 和 textView (ItemView) 的布局。

I want to add the ItemView to the ItemViewContainer programmatically a few times.我想以编程方式将 ItemView 添加到 ItemViewContainer 几次。

How can i do that instead of adding the ItemView with from ItemViewContainer.我该怎么做而不是从 ItemViewContainer 添加 ItemView。

ItemView项目视图

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:id="@+id/LLTopServiceRootView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical">

    <androidx.cardview.widget.CardView
        android:id="@+id/CVServiceIMGHolder"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:translationZ="5dp"
        card_view:cardBackgroundColor="@color/fragment_background_color"
        card_view:cardCornerRadius="100dp"
        card_view:elevation="5dp">

        <ImageView
            android:id="@+id/IVServiceIMG"
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:layout_gravity="center"
            android:tint="@color/text_color"
            card_view:srcCompat="@drawable/lights_icon" />
    </androidx.cardview.widget.CardView>

    <TextView
        android:id="@+id/TVServiceName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/text_color"
        android:layout_gravity="center_horizontal"
        android:text="Service\nName"
        android:textAlignment="center" />

</LinearLayout>

ItemViewContainer项目视图容器

<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:card_view="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="15dp"
    android:orientation="vertical"
    android:translationZ="5dp"
    app:cardBackgroundColor="@color/fragment_background_color"
    app:cardCornerRadius="5dp"
    card_view:elevation="5dp">

    <LinearLayout

        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        android:id="@+id/LLTopServiceContainer"
    </LinearLayout>

</androidx.cardview.widget.CardView>

Fragment that contain layout with the ItemViewContainer:包含 ItemViewContainer 布局的片段:

public class HomeFragment extends Fragment {

    private View view;
    private TextView mTVPageTitle, mTVHomeNavigationTXT;
    private LottieAnimationView mLAVHome;
    private ButtonsManager bm;
    private LinearLayout mLLTopServiceContainer;
    private final String TAG = "HomeLifeCycle";

    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        view = inflater.inflate(R.layout.fragment_home, container, false);
        bm = new ButtonsManager(getContext());
        initView(view);
        Log.d(TAG, "onCreateView: ");
        return view;
    }

    private void initView(View view) {
        if (getActivity() != null) {
            mLAVHome = getActivity().findViewById(R.id.LAVHome);
            mTVPageTitle = getActivity().findViewById(R.id.TVPageTitle);
            mTVHomeNavigationTXT = getActivity().findViewById(R.id.TVHome);
            mLLTopServiceContainer = view.findViewById(R.id.LLTopServiceContainer);
            addSelectedIconStyle();
        }
    }
}

I want to add the itemView 4th times我想第四次添加 itemView

You could do it dynamically like this way : Simple Android RecyclerView example你可以像这样动态地做到这一点: Simple Android RecyclerView example

Or adding manually :手动添加:

LayoutInflater inflater = (LayoutInflater)getBaseContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LinearLayout linearLayout= (LinearLayout) findViewById(R.id.LLTopServiceContainer);
View view = (View) inflater.inflate(R.layout.item:view_name_file, linearLayout, true);

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

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