gpt4 book ai didi

android - 以编程方式定位 viewstub

转载 作者:搜寻专家 更新时间:2023-11-01 09:09:52 25 4
gpt4 key购买 nike

我想按语法在 View 组中定位一个 View stub 。
我尝试使用 setLayoutParams() 方法,但它不适用于 View stub 。
请提出任何解决方案。

下面是我的代码。

setContentView(R.layout.textplay);
bt = (Button) findViewById(R.id.button1);

bt.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
panel = (ViewStub) findViewById(R.id.serachViewStub2);
panel.inflate(getApplicationContext(), R.layout.half_screen,null);
panel.setVisibility(View.VISIBLE);
panel.setOnInflateListener(new OnInflateListener() {

@Override
public void onInflate(ViewStub arg0, View arg1) {
// TODO Auto-generated method stub

parentLayout = (LinearLayout) findViewById(R.id.stubLayout1);
parentLayout.setLayoutParams(new LinearLayout.LayoutParams(0, 300));

}
});
}
});

半屏.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/stubLayout1" android:layout_width="fill_parent"
android:layout_height="50dp" android:weightSum="100"
android:padding="2dp"
android:orientation="horizontal" android:background="@color/white">
<EditText android:id="@+id/editText1" android:layout_height="40dp"
android:layout_width="fill_parent" android:layout_weight="10"
android:hint="Search Location" android:paddingTop="2dp">
<requestFocus></requestFocus>
</EditText>
<Button android:id="@+id/search_button" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_weight="90"
android:background="@drawable/custom_search_button">
</Button>
</LinearLayout>

文本播放.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="25dp"
android:paddingTop="25dp" android:paddingRight="25dp" android:background="@drawable/back2">
<EditText android:layout_height="wrap_content"
android:layout_width="match_parent" android:id="@+id/editText1"
android:hint="Type a Command">
<requestFocus></requestFocus>
</EditText>
<LinearLayout android:layout_height="wrap_content"
android:layout_width="match_parent" android:id="@+id/linearLayout1"
android:weightSum="100">
<Button android:id="@+id/button1" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_weight="90"
android:text="Try Command"></Button>
<ToggleButton android:text="ToggleButton" android:id="@+id/toggleButton1"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:paddingBottom="10dp" android:layout_weight="10"></ToggleButton>
</LinearLayout>
<TextView android:id="@+id/textView1" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Invalid"
android:gravity="center" android:layout_gravity="center"></TextView>
<ViewStub android:id="@+id/serachViewStub2" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:inflatedId="@+id/search_stub"
android:layout="@layout/half_screen">
</ViewStub>

</LinearLayout>

最佳答案

在对 ViewStub 进行充气后,您可以访问 ViewStub 实际显示的布局。获取对布局的引用并在其上设置布局参数。

ViewStub 扩展了 my_layout.xml,其中包含一个 LinearLayout,其 id 为 mainContainer。为 View stub 充气后,获取对 mainContainer 的引用并在其上应用布局参数。

关于android - 以编程方式定位 viewstub,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9022801/

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