gpt4 book ai didi

android - 如何在不反转所选项目的情况下从左到右反转微调器?

转载 作者:太空狗 更新时间:2023-10-29 15:09:45 25 4
gpt4 key购买 nike

普通的 Spinner 是这样的:

enter image description here

当我尝试使用 android:rotationY="180" 旋转它时,所选项目也旋转似乎合乎逻辑

enter image description here

现在的问题是所选项目被旋转使得所选项目文本没有意义

所需的与第一张图片相同,但带有旋转的微调器

微调器 XML:

<Spinner  
android:id="@+id/privacySpinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/eventPrivacy"
android:layout_alignParentRight="@id/eventPrivacy"
android:prompt="@string/event_privacy"
android:entries="@array/privacy_levels"
android:rotationY="180"
/>

最佳答案

通过选择“选择的项目”解决,因为它被回调为 View (textView)然后旋转回来。选择的项目旋转回来

  privacySpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {


public void onItemSelected(AdapterView<?> adapter, View view, int pos, long id) {

if(Locale.getDefault().getLanguage().equals("ar"))
view.setRotationY(180);// rotating the view (Selected Item) back
public void onNothingSelected(AdapterView<?> arg0) {
}
});

}

关于android - 如何在不反转所选项目的情况下从左到右反转微调器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17908867/

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