这是我要旋转的android图像按钮。
它确实会旋转,但正如您从屏幕截图中看到的,它的一部分会在旋转过程中转到背景/不可见。如何确保ImageButton在整个旋转过程中保持完全可见?
以下是活动代码:

public class MainActivity extends Activity {

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ImageButton imgbt = (ImageButton)findViewById(R.id.mybutton);

        RotateAnimation ra =new RotateAnimation(0, 360);
        ra.setFillAfter(true);
        ra.setDuration(2000);
        imgbt.startAnimation(ra);
    }
}

和XML:
<LinearLayout
    android:layout_width="0dip"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:gravity="center"
    android:orientation="vertical" >

    <ImageButton
        android:id="@+id/mybutton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/mybutton" />
</LinearLayout>

最佳答案

在线性布局中,更改此:

android:layout_height="wrap_content"

对此:
android:layout_height="match_parent"

因此,您将确保容器足够大,可以完全显示图像按钮,即使它是垂直的。

关于android - 防止图像按钮进入背景,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20854255/

10-12 00:34