gpt4 book ai didi

java - 如何使用xml或java设置FragmentTabHost动态高度

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

到目前为止,这是我使用 FragmentTabHost 的代码;问题是高度不是动态变化的 (300dp) 不兼容更大的屏幕

    <android.support.v4.app.FragmentTabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="300dp" >

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

<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom" />

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.v4.app.FragmentTabHost>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Counter counter 10:00:00"
android:textColor="@color/red"
android:textStyle="bold"/>
</LinearLayout>

<RelativeLayout
style="@style/MyActionBar"
android:layout_width="fill_parent"
android:layout_height="20dp"
android:layout_weight="2"
android:background="@color/darkactionb"
android:gravity="bottom" >

<ImageView
android:id="@+id/action_bar_addtarget"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="false"
android:layout_alignParentTop="false"
android:layout_alignWithParentIfMissing="false"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:contentDescription="@string/Login"
android:cropToPadding="true"
android:gravity="bottom"
android:padding="@dimen/abc_action_bar_icon_vertical_padding_material"
android:scaleType="fitStart"
android:src="@drawable/custom_actionbar_icon_bottom_call_target"
android:visibility="visible" />

<ImageView
android:id="@+id/action_bar_filter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:adjustViewBounds="false"
android:contentDescription="@string/Login"
android:onClick="showCallResult"
android:padding="@dimen/abc_action_bar_icon_vertical_padding_material"
android:src="@drawable/custom_actionbar_icon_bottom_edit_callresult"
android:visibility="visible" />

<ImageView
android:id="@+id/action_bar_autodial"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:contentDescription="@string/Login"
android:onClick="showDialpad"
android:padding="@dimen/abc_action_bar_icon_vertical_padding_material"
android:scaleType="center"
android:src="@drawable/custom_actionbar_icon_bottom_home_list"
android:visibility="visible" />

</RelativeLayout>
</LinearLayout>

最佳答案

是wrap_content 不工作和当文本/图像大小改变标签没有放大的问题吗?

如果是:

不知道为什么它不应用 xml 设置,但如果以编程方式设置它看起来没问题,例如:

 ... some code that defines an add tabs to code FragmentTabHost ...
for (int i = 0; i < tabhost.getTabWidget().getChildCount(); i++) {
LinearLayout.LayoutParams params
= new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.MATCH_PARENT);
params.weight = 50;
tabhost.getTabWidget().getChildAt(i).setLayoutParams(params);
}

希望这对您有所帮助。

关于java - 如何使用xml或java设置FragmentTabHost动态高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29746897/

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