android - 获取Android中动态添加的LinearLayouts的高度

标签 android android-layout android-activity android-linearlayout

我在一个 android 应用程序中工作,我正在我的 Scollview 中动态添加一个线性布局。现在我想获得动态添加的每个线性布局的高度。下面是我的代码和 Xml。

LinearLayout layout = (LinearLayout) findViewById(R.id.subscrollLinearLayout);
    LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    List<String> mSempLog = new ArrayList<String>();

    mSempLog.add("TEST1");
    mSempLog.add("TEST2");
    mSempLog.add("TEST3");
    mSempLog.add("TEST4");
    mSempLog.add("TEST5");
    mSempLog.add("TEST6");
    mSempLog.add("TEST7");
    mSempLog.add("TEST8");

    for (int i = 0; i < mSempLog.size(); i++) {

        LinearLayout service_row = (LinearLayout) inflater.inflate(
                R.layout.tesffff, null);
        TextView dd = ((TextView) service_row.findViewById(R.id.test1));
        dd.setText(mSempLog.get(i));
        dd.setTag(i);
        ((TextView) service_row.findViewById(R.id.test2)).setText(mSempLog
                .get(i));

        layout.addView(service_row, i);

    }

    ScrollView parentScrollView = (ScrollView) findViewById(R.id.parentscroll);
    ScrollView childScrollView = (ScrollView) findViewById(R.id.subscroll);

    parentScrollView.setOnTouchListener(new View.OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {

            findViewById(R.id.subscroll).getParent()
                    .requestDisallowInterceptTouchEvent(false);
            return false;
        }
    });

    childScrollView.setOnTouchListener(new View.OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {

            // Disallow the touch request for parent scroll on touch of
            // child view
            v.getParent().requestDisallowInterceptTouchEvent(true);
            return false;
        }
    });

}

XML

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/parentscroll"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <ScrollView
            android:id="@+id/subscroll"
            android:layout_width="match_parent"
            android:layout_height="200dp" >

            <LinearLayout
                android:id="@+id/subscrollLinearLayout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical" >
            </LinearLayout>
        </ScrollView>

        <TextView
            android:id="@+id/test1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="dfsdfsdf" />

        <TextView
            android:id="@+id/test1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="dfsdfsdf" />

        <TextView
            android:id="@+id/test1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="dfsdfsdf" />

        <TextView
            android:id="@+id/test1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="dfsdfsdf" />

        <TextView
            android:id="@+id/test1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="dfsdfsdf" />

        <TextView
            android:id="@+id/test1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="dfsdfsdf" />

        <TextView
            android:id="@+id/test1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="dfsdfsdf" />

        <TextView
            android:id="@+id/test1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="dfsdfsdf" />

        <TextView
            android:id="@+id/test1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="dfsdfsdf" />
    </LinearLayout>

</ScrollView>

行 xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:padding="15dp"
    android:weightSum="2" >

    <TextView
        android:id="@+id/test1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center"
        android:clickable="true"
        android:onClick="onTest1"
        android:textColor="@android:color/black" />

    <TextView
        android:id="@+id/test2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:clickable="true"
        android:gravity="center"
        android:onClick="onTest2"
        android:textColor="@android:color/black" />

</LinearLayout>

最佳答案

这对我有用

MyListViewObj.post(new Runnable(){
    public void run(){
         int height = MyListViewObj.getHeight();
    }
});

关于android - 获取Android中动态添加的LinearLayouts的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27499486/

相关文章:

android - 在操作栏中移动图像按钮

android - 如何判断是否出现了新的 Activity ?

Android - 当 Activity 完成时线程会发生什么?

android - 在 Android Jetpack Compose Image 中禁用位图过滤

android - 在 Android 中使用默认字体样式

android - 适用于 Android 和 iOS 的离线 map SDK

android - Textview 显示部分文本

android - 如何避免旋转时重新创建 Activity,同时尊重方向锁定?

java - 安卓手机如何快速删除所有短信

Android Marshmallow,api 23,Cordova 应用程序上的权限被破坏